pub trait TryFromLeStream<T>: TryFrom<T> {
// Required method
fn try_from_le_stream<I>(
bytes: I,
) -> Result<Self, Option<<Self as TryFrom<T>>::Error>>
where I: Iterator<Item = u8>;
}Expand description
Try to parse an object from a stream of bytes with little endianness.
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.