Struct Verneed
struct Verneed<E: Endian> { ... }
Version dependency.
Fields
vn_version: crate::endian::U16<E>Version of structure
vn_cnt: crate::endian::U16<E>Number of associated aux entries
vn_file: crate::endian::U32<E>Offset of filename for this dependency
vn_aux: crate::endian::U32<E>Offset in bytes to vernaux array
vn_next: crate::endian::U32<E>Offset in bytes to next verneed entry
Implementations
impl<Endian: endian::Endian> elf::Verneed<Endian>
fn file<'data, R: ReadRef<'data>>(self: &Self, endian: Endian, strings: StringTable<'data, R>) -> Result<&'data [u8]>Parse the file from the string table.
impl<E> Freeze for Verneed<E>
impl<E> RefUnwindSafe for Verneed<E>
impl<E> Send for Verneed<E>
impl<E> Sync for Verneed<E>
impl<E> Unpin for Verneed<E>
impl<E> UnwindSafe for Verneed<E>
impl<E: $crate::clone::Clone + Endian> Clone for Verneed<E>
fn clone(self: &Self) -> Verneed<E>
impl<E: $crate::fmt::Debug + Endian> Debug for Verneed<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for Verneed<E>
impl<E: Endian> Pod for Verneed<E>
impl<T> Any for Verneed<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Verneed<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Verneed<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Verneed<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Verneed<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Verneed<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Verneed<E>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Verneed<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Verneed<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>