Struct goblin::pe::debug::CodeviewPDB70DebugInfo
source · #[repr(C)]pub struct CodeviewPDB70DebugInfo<'a> {
pub codeview_signature: u32,
pub signature: [u8; 16],
pub age: u32,
pub filename: &'a [u8],
}
Fields§
§codeview_signature: u32
§signature: [u8; 16]
§age: u32
§filename: &'a [u8]
Implementations§
source§impl<'a> CodeviewPDB70DebugInfo<'a>
impl<'a> CodeviewPDB70DebugInfo<'a>
pub fn parse(bytes: &'a [u8], idd: &ImageDebugDirectory) -> Result<Option<Self>>
pub fn parse_with_opts( bytes: &'a [u8], idd: &ImageDebugDirectory, opts: &ParseOptions ) -> Result<Option<Self>>
Trait Implementations§
source§impl<'a> Clone for CodeviewPDB70DebugInfo<'a>
impl<'a> Clone for CodeviewPDB70DebugInfo<'a>
source§fn clone(&self) -> CodeviewPDB70DebugInfo<'a>
fn clone(&self) -> CodeviewPDB70DebugInfo<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for CodeviewPDB70DebugInfo<'a>
impl<'a> Debug for CodeviewPDB70DebugInfo<'a>
source§impl<'a> Default for CodeviewPDB70DebugInfo<'a>
impl<'a> Default for CodeviewPDB70DebugInfo<'a>
source§fn default() -> CodeviewPDB70DebugInfo<'a>
fn default() -> CodeviewPDB70DebugInfo<'a>
Returns the “default value” for a type. Read more
source§impl<'a> PartialEq for CodeviewPDB70DebugInfo<'a>
impl<'a> PartialEq for CodeviewPDB70DebugInfo<'a>
source§fn eq(&self, other: &CodeviewPDB70DebugInfo<'a>) -> bool
fn eq(&self, other: &CodeviewPDB70DebugInfo<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Copy for CodeviewPDB70DebugInfo<'a>
impl<'a> StructuralPartialEq for CodeviewPDB70DebugInfo<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for CodeviewPDB70DebugInfo<'a>
impl<'a> Send for CodeviewPDB70DebugInfo<'a>
impl<'a> Sync for CodeviewPDB70DebugInfo<'a>
impl<'a> Unpin for CodeviewPDB70DebugInfo<'a>
impl<'a> UnwindSafe for CodeviewPDB70DebugInfo<'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