pub struct SharedObject {
pub base_address: usize,
pub path_name: PathBuf,
pub build_id: Option<BuildId>,
pub loaded_segments: Vec<LoadedSegment>,
}
Expand description
Information about a shared object loaded into the current process.
Fields§
§base_address: usize
The address at which the object is loaded.
path_name: PathBuf
The path of that file the object was loaded from.
build_id: Option<BuildId>
The build ID of the object, if found.
loaded_segments: Vec<LoadedSegment>
Loaded segments of the object.
Trait Implementations§
Source§fn clone(&self) -> SharedObject
fn clone(&self) -> SharedObject
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§fn cmp(&self, other: &SharedObject) -> Ordering
fn cmp(&self, other: &SharedObject) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Auto Trait Implementations§
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