[][src]Struct goblin::pe::debug::DebugData

pub struct DebugData<'a> {
    pub image_debug_directory: ImageDebugDirectory,
    pub codeview_pdb70_debug_info: Option<CodeviewPDB70DebugInfo<'a>>,
}

Fields

image_debug_directory: ImageDebugDirectorycodeview_pdb70_debug_info: Option<CodeviewPDB70DebugInfo<'a>>

Methods

impl<'a> DebugData<'a>[src]

pub fn parse(
    bytes: &'a [u8],
    dd: DataDirectory,
    sections: &[SectionTable],
    file_alignment: u32
) -> Result<Self>
[src]

pub fn guid(&self) -> Option<[u8; 16]>[src]

Return this executable's debugging GUID, suitable for matching against a PDB file.

Trait Implementations

impl<'a> PartialEq<DebugData<'a>> for DebugData<'a>[src]

impl<'a> Copy for DebugData<'a>[src]

impl<'a> Default for DebugData<'a>[src]

impl<'a> Clone for DebugData<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for DebugData<'a>[src]

Auto Trait Implementations

impl<'a> Send for DebugData<'a>

impl<'a> Unpin for DebugData<'a>

impl<'a> Sync for DebugData<'a>

impl<'a> UnwindSafe for DebugData<'a>

impl<'a> RefUnwindSafe for DebugData<'a>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]