pub struct DebugData<'a> {
pub image_debug_directory: ImageDebugDirectory,
pub codeview_pdb70_debug_info: Option<CodeviewPDB70DebugInfo<'a>>,
}
Fields§
§image_debug_directory: ImageDebugDirectory
§codeview_pdb70_debug_info: Option<CodeviewPDB70DebugInfo<'a>>
Implementations§
source§impl<'a> DebugData<'a>
impl<'a> DebugData<'a>
pub fn parse( bytes: &'a [u8], dd: DataDirectory, sections: &[SectionTable], file_alignment: u32 ) -> Result<Self>
pub fn parse_with_opts( bytes: &'a [u8], dd: DataDirectory, sections: &[SectionTable], file_alignment: u32, opts: &ParseOptions ) -> Result<Self>
Trait Implementations§
source§impl<'a> PartialEq for DebugData<'a>
impl<'a> PartialEq for DebugData<'a>
impl<'a> Copy for DebugData<'a>
impl<'a> StructuralPartialEq for DebugData<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DebugData<'a>
impl<'a> Send for DebugData<'a>
impl<'a> Sync for DebugData<'a>
impl<'a> Unpin for DebugData<'a>
impl<'a> UnwindSafe for DebugData<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more