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

Fields

export: &'a str
lib: &'a str

DLLOrdinal

Fields

ordinal: usize
lib: &'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.