[][src]Enum pelite::pe32::debug::CodeView

pub enum CodeView<'a> {
    Cv20 {
        image: &'a IMAGE_DEBUG_CV_INFO_PDB20,
        pdb_file_name: &'a CStr,
    },
    Cv70 {
        image: &'a IMAGE_DEBUG_CV_INFO_PDB70,
        pdb_file_name: &'a CStr,
    },
}

CodeView information.

Variants

Cv20

CodeView 2.0 debug information.

Fields of Cv20

image: &'a IMAGE_DEBUG_CV_INFO_PDB20pdb_file_name: &'a CStr
Cv70

CodeView 7.0 debug information.

Fields of Cv70

image: &'a IMAGE_DEBUG_CV_INFO_PDB70pdb_file_name: &'a CStr

Methods

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

pub fn format(&self) -> &'a str[src]

pub fn age(&self) -> u32[src]

pub fn pdb_file_name(&self) -> &'a CStr[src]

Trait Implementations

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

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

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

impl<'a> Serialize for CodeView<'a>[src]

Auto Trait Implementations

impl<'a> Sync for CodeView<'a>

impl<'a> Send for CodeView<'a>

impl<'a> Unpin for CodeView<'a>

impl<'a> UnwindSafe for CodeView<'a>

impl<'a> RefUnwindSafe for CodeView<'a>

Blanket Implementations

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

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> 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]