pub trait MinidumpStream<'a> {
type Output;
// Required method
fn parse(cursor: &mut Cursor<&'a [u8]>) -> Result<Self::Output>;
}Expand description
Trait to represent the parsing of generic streams in a minidump file.
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.