pub trait VectorFromWasmAbi: WasmDescribeVector + Sized {
type Abi: WasmAbi;
// Required method
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>;
}
Expand description
Required Associated Types§
Required Methods§
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Object Safety§
This trait is not object safe.