#[repr(C)]pub struct dl_phdr_info {
pub addr: usize,
pub name: *const c_char,
pub phdr: *const c_void,
pub phnum: u32,
pub adds: c_ulonglong,
pub subs: c_ulonglong,
pub tls_modid: usize,
pub tls_data: *mut c_void,
}
Expand description
Information about a loaded dynamic object
Fields§
§addr: usize
Load address
name: *const c_char
Pointer to name, as a C string
phdr: *const c_void
Pointer to program headers
phnum: u32
Number of program headers
adds: c_ulonglong
§subs: c_ulonglong
§tls_modid: usize
§tls_data: *mut c_void
Trait Implementations§
source§impl Clone for dl_phdr_info
impl Clone for dl_phdr_info
source§fn clone(&self) -> dl_phdr_info
fn clone(&self) -> dl_phdr_info
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for dl_phdr_info
impl Debug for dl_phdr_info
impl Copy for dl_phdr_info
Auto Trait Implementations§
impl Freeze for dl_phdr_info
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§
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)