pub trait VectorFromWasmAbi: Sized + WasmDescribeVector {
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]>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.