pub trait Endian:
AllBytesValid
+ Copy
+ Sized {
// Required methods
fn into_le(self) -> Self;
fn from_le(self) -> Self;
}
Expand description
Trait used for the implementation of the Le
type.
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.