pub struct Verdef<'a> {
    pub vd_version: u16,
    pub vd_flags: u16,
    pub vd_ndx: u16,
    pub vd_cnt: u16,
    pub vd_hash: u32,
    pub vd_aux: u32,
    pub vd_next: u32,
    /* private fields */
}
Expand description

An ELF Version Definition entry .

Fields

vd_version: u16

Version revision. This field shall be set to 1.

vd_flags: u16

Version information flag bitmask.

vd_ndx: u16

Version index numeric value referencing the SHT_GNU_versym section.

vd_cnt: u16

Number of associated verdaux array entries.

vd_hash: u32

Version name hash value (ELF hash function).

vd_aux: u32

Offset in bytes to a corresponding entry in an array of Elfxx_Verdaux structures.

vd_next: u32

Offset to the next verdef entry, in bytes.

Implementations

Get an iterator over the Verdaux entries of this Verdef entry.

Trait Implementations

Formats the value using the given formatter. Read more

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.