pub struct Vernaux {
    pub vna_hash: u32,
    pub vna_flags: u16,
    pub vna_other: u16,
    pub vna_name: usize,
    pub vna_next: u32,
}
Expand description

An ELF Version Need Auxiliary entry.

Fields

vna_hash: u32

Dependency name hash value (ELF hash function).

vna_flags: u16

Dependency information flag bitmask.

vna_other: u16

Object file version identifier used in the .gnu.version symbol version array. Bit number 15 controls whether or not the object is hidden; if this bit is set, the object cannot be used and the static linker will ignore the symbol’s presence in the object.

vna_name: usize

Offset to the dependency name string in the section header, in bytes.

vna_next: u32

Offset to the next vernaux entry, in bytes.

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.