pub trait AuxArrayElement: Copy {
// Required method
fn from_le_bytes(bytes: &[u8]) -> Option<Self>;
}
Expand description
Types that can be used in aux arrays.
Required Methods§
fn from_le_bytes(bytes: &[u8]) -> Option<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.