pub trait Array<const N: usize>: Abi {
// Required method
fn from_ptr<A: Abi>(ptr: *const A) -> Result<Self>;
}Expand description
A fixed, statically sized chunk of data that can be read from the Source.
Required Methods§
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.