pub unsafe extern "C" fn webview_set_html(
w: webview_t,
html: *const c_char,
) -> webview_error_tExpand description
Load HTML content into the webview.
Example: @code{.c} webview_set_html(w, “
Hello
”); @endcode@param w The webview instance. @param html HTML content.