Struct libc::dl_phdr_info
source · [−]#[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
sourceimpl Clone for dl_phdr_info
impl Clone for dl_phdr_info
sourcefn clone(&self) -> dl_phdr_info
fn clone(&self) -> dl_phdr_info
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for dl_phdr_info
impl Debug for dl_phdr_info
sourceimpl Hash for dl_phdr_info
impl Hash for dl_phdr_info
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [
Hasher
]. Read more1.3.0fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
Feeds a slice of this type into the given [
Hasher
]. Read moresourceimpl PartialEq<dl_phdr_info> for dl_phdr_info
impl PartialEq<dl_phdr_info> for dl_phdr_info
sourcefn eq(&self, other: &dl_phdr_info) -> bool
fn eq(&self, other: &dl_phdr_info) -> bool
impl Copy for dl_phdr_info
impl Eq for dl_phdr_info
impl StructuralEq for dl_phdr_info
impl StructuralPartialEq for dl_phdr_info
Auto Trait Implementations
impl RefUnwindSafe for dl_phdr_info
impl !Send for dl_phdr_info
impl !Sync for dl_phdr_info
impl Unpin for dl_phdr_info
impl UnwindSafe for dl_phdr_info
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more