pub trait ToWasm {
    fn u32_size() -> usize;
    fn read_to_wasm(inp: &mut ToWasmMsgRef<'_>) -> Self;
    fn to_wasm_js_body(
        out: &mut WasmJSOutput,
        slot: usize,
        is_recur: bool,
        prop: &str,
        temp: usize
    ); fn type_name() -> &'static str { ... } fn live_id() -> LiveId { ... } fn to_string() -> String { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors