Enum findshlibs::SharedLibraryId[][src]

pub enum SharedLibraryId {
    Uuid([u8; 16]),
    GnuBuildId(Vec<u8>),
    PeSignature(u32u32),
    PdbSignature([u8; 16]u32),
}
Expand description

Represents an ID for a shared library.

Variants

Uuid([u8; 16])

A UUID (used on mac)

Tuple Fields of Uuid

0: [u8; 16]
GnuBuildId(Vec<u8>)

A GNU build ID

Tuple Fields of GnuBuildId

0: Vec<u8>
PeSignature(u32u32)

The PE timestamp and size

Tuple Fields of PeSignature

0: u321: u32
PdbSignature([u8; 16]u32)

A PDB GUID and age,

Tuple Fields of PdbSignature

0: [u8; 16]1: u32

Implementations

Returns the raw bytes of the shared library ID.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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.

Converts the given value to a String. Read more

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.