pub trait FromBytesWithInputBorrowed<'a>: Sized + Debug {
type Input: Debug;
// Required method
fn from_bytes_with_input(
buffer: &mut Cursor<&'a [u8]>,
input: Self::Input,
) -> Result<Self, DeError>;
// Provided method
fn strip(buffer: &mut Cursor<&'a [u8]>) -> Result<(), 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.
This trait borrows instead of copying.
Required Associated Types§
Required Methods§
Provided 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.