Struct dl_phdr_info

#[repr(C)]
pub struct dl_phdr_info { pub dlpi_addr: Elf64_Addr, pub dlpi_name: *const c_char, pub dlpi_phdr: *const Elf64_Phdr, pub dlpi_phnum: Elf64_Half, pub dlpi_adds: c_ulonglong, pub dlpi_subs: c_ulonglong, pub dlpi_tls_modid: size_t, pub dlpi_tls_data: *mut c_void }

Fields

dlpi_addr: Elf64_Addr
dlpi_name: *const c_char
dlpi_phdr: *const Elf64_Phdr
dlpi_phnum: Elf64_Half
dlpi_adds: c_ulonglong
dlpi_subs: c_ulonglong
dlpi_tls_modid: size_t
dlpi_tls_data: *mut c_void

Trait Implementations

impl Clone for dl_phdr_info

fn clone(&self) -> dl_phdr_info

impl Copy for dl_phdr_info

impl Debug for dl_phdr_info

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Eq for dl_phdr_info

impl Hash for dl_phdr_info

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for dl_phdr_info

fn eq(&self, other: &dl_phdr_info) -> bool

impl StructuralPartialEq for dl_phdr_info

Auto Trait Implementations

impl !Send for dl_phdr_info

impl !Sync for dl_phdr_info

impl Freeze for dl_phdr_info

impl RefUnwindSafe for dl_phdr_info

impl Unpin for dl_phdr_info

impl UnsafeUnpin for dl_phdr_info

impl UnwindSafe for dl_phdr_info

Blanket Implementations

impl<T> Any for dl_phdr_info where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for dl_phdr_info where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for dl_phdr_info where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for dl_phdr_info where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for dl_phdr_info

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for dl_phdr_info where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for dl_phdr_info where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for dl_phdr_info where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>