pub struct LINK_MAP_32 {
pub addr: u32,
pub name: RVA,
pub ld: u32,
}
Expand description
Dynamic linker information for a shared library on 32-bit Linux
This is functionally equivalent to the data in struct link_map
defined in <link.h>.
Fields§
§addr: u32
§name: RVA
The offset of a string containing the filename of this shared library
ld: u32
Trait Implementations§
Source§impl Clone for LINK_MAP_32
impl Clone for LINK_MAP_32
Source§fn clone(&self) -> LINK_MAP_32
fn clone(&self) -> LINK_MAP_32
Returns a duplicate 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 LINK_MAP_32
impl Debug for LINK_MAP_32
Source§impl<'a> TryFromCtx<'a, Endian> for LINK_MAP_32where
LINK_MAP_32: 'a,
impl<'a> TryFromCtx<'a, Endian> for LINK_MAP_32where
LINK_MAP_32: 'a,
Source§impl<'a> TryIntoCtx<Endian> for &'a LINK_MAP_32
impl<'a> TryIntoCtx<Endian> for &'a LINK_MAP_32
Auto Trait Implementations§
impl Freeze for LINK_MAP_32
impl RefUnwindSafe for LINK_MAP_32
impl Send for LINK_MAP_32
impl Sync for LINK_MAP_32
impl Unpin for LINK_MAP_32
impl UnwindSafe for LINK_MAP_32
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