pub trait DecodeRawLe: Sized {
// Required method
fn decode_raw_le(
reader: &mut (impl ReadRaw + ?Sized),
) -> Result<Self, DecodeError>;
}Required Methods§
fn decode_raw_le( reader: &mut (impl ReadRaw + ?Sized), ) -> Result<Self, DecodeError>
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.