Trait wasm_bindgen::convert::VectorFromWasmAbi
source · pub trait VectorFromWasmAbi: WasmDescribeVector + Sized {
type Abi: WasmAbi;
// Required method
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>;
}
Expand description
Trait for element types to implement FromWasmAbi for vectors of themselves.
Required Associated Types§
Required Methods§
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Object Safety§
This trait is not object safe.