#[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