pub trait ParseSectionData: Sized {
// Required method
fn parse(
section_data: &[u8],
sections: &Sections<'_>,
optional_header: &OptionalHeader,
coff_header: &CoffFileHeader,
) -> Result<Self>;
}Required Methods§
fn parse( section_data: &[u8], sections: &Sections<'_>, optional_header: &OptionalHeader, coff_header: &CoffFileHeader, ) -> Result<Self>
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.