pub trait FromBytesWithInput<'a>: Sized + Debug {
type Input: Debug;
// Required method
fn from_bytes_with_input(
buffer: &mut Cursor<&'a [u8]>,
input: Self::Input,
) -> Result<Self, DeError>;
}
Expand description
Takes an arbitrary input which serves as additional information for guiding the conversion from a byte buffer to a data structure. A common workflow is a data structure that has a size to determine how much more of the data in the byte buffer is part of a given data structure.
Required Associated Types§
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.