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§
Auto Trait Implementations§
impl Freeze for Vernaux
impl RefUnwindSafe for Vernaux
impl Send for Vernaux
impl Sync for Vernaux
impl Unpin for Vernaux
impl UnwindSafe for Vernaux
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more