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§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Verneed<'a>
impl<'a> RefUnwindSafe for Verneed<'a>
impl<'a> Send for Verneed<'a>
impl<'a> Sync for Verneed<'a>
impl<'a> Unpin for Verneed<'a>
impl<'a> UnwindSafe for Verneed<'a>
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