pub trait Parse<'p>: Sized {
// Required method
fn parse<B, E>(p: &mut Parser<B, E>) -> ParseResult<Self>
where E: Endian,
B: ParseBuf<'p>;
}
Expand description
A type that can be parsed
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.