pub trait FromHostArray<T> {
// Required method
fn from_host_array(array: HostArray) -> Result<T, DiffsolJsError>;
}Required Methods§
fn from_host_array(array: HostArray) -> Result<T, DiffsolJsError>
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.