Function wasm_bindgen::render
source · pub fn render(payload: JsValue, silent: bool) -> JsValue
Expand description
Render with Dilla from a Payload as JavaScript Object.
Arguments
payload
- The JavaScript value representing the payload to be rendered.
Returns
The result of the rendering process as a JavaScript value.
Errors
This function may encounter errors during the rendering process if the payload is not a valid JavaScript object or array.
If an error occurs, an error message will be printed and the corresponding error message will be returned as a JsValue
.
Panics
This function assumes that the provided payload can be successfully parsed as a serde_json::Value
and rendered using Dilla.
It may panic if the payload cannot be parsed or if an unexpected error occurs during rendering.