pub struct Verneed<'a> {
    pub vn_version: u16,
    pub vn_cnt: u16,
    pub vn_file: usize,
    pub vn_aux: u32,
    pub vn_next: u32,
    /* private fields */
}
Expand description

An ELF Version Need entry .

Fields

vn_version: u16

Version of structure. This value is currently set to 1, and will be reset if the versioning implementation is incompatibly altered.

vn_cnt: u16

Number of associated verneed array entries.

vn_file: usize

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

vn_aux: u32

Offset to a corresponding entry in the vernaux array, in bytes.

vn_next: u32

Offset to the next verneed entry, in bytes.

Implementations

Get an iterator over the Vernaux entries of this Verneed 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

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.