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

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

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

Variants

DLLName
Show fields

Fields of DLLName

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

Fields of DLLOrdinal

ordinal: usizelib: &'a str

Implementations

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.