#[repr(C)]pub struct Verneed<E: Endian> {
pub vn_version: U16<E>,
pub vn_cnt: U16<E>,
pub vn_file: U32<E>,
pub vn_aux: U32<E>,
pub vn_next: U32<E>,
}
Expand description
Version dependency.
Fields
vn_version: U16<E>
Version of structure
vn_cnt: U16<E>
Number of associated aux entries
vn_file: U32<E>
Offset of filename for this dependency
vn_aux: U32<E>
Offset in bytes to vernaux array
vn_next: U32<E>
Offset in bytes to next verneed entry
Implementations
Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for Verneed<E> where
E: RefUnwindSafe,
impl<E> UnwindSafe for Verneed<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more