[][src]Enum goblin::pe::export::Reexport

pub enum Reexport<'a> {
    DLLName {
        export: &'a str,
        lib: &'a str,
    },
    DLLOrdinal {
        ordinal: usize,
        lib: &'a str,
    },
}

PE binaries have two kinds of reexports, either specifying the dll's name, or the ordinal value of the dll

Variants

DLLName

Fields of DLLName

export: &'a strlib: &'a str
DLLOrdinal

Fields of DLLOrdinal

ordinal: usizelib: &'a str

Methods

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

pub fn parse(bytes: &'a [u8], offset: usize) -> Result<Reexport<'a>>[src]

Trait Implementations

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

impl<'a> TryFromCtx<'a, Endian, [u8]> for Reexport<'a>[src]

type Error = Error

Auto Trait Implementations

impl<'a> RefUnwindSafe for Reexport<'a>

impl<'a> Send for Reexport<'a>

impl<'a> Sync for Reexport<'a>

impl<'a> Unpin for Reexport<'a>

impl<'a> UnwindSafe for Reexport<'a>

Blanket Implementations

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

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

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

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.