struct Library {
name: OsString,
segments: Vec<LibrarySegment>,
bias: usize,
}
Fields§
§name: OsString
§segments: Vec<LibrarySegment>
Segments of this library loaded into memory, and where they’re loaded.
bias: usize
The “bias” of this library, typically where it’s loaded into memory. This value is added to each segment’s stated address to get the actual virtual memory address that the segment is loaded into. Additionally this bias is subtracted from real virtual memory addresses to index into debuginfo and the symbol table.
Auto Trait Implementations§
impl Freeze for Library
impl RefUnwindSafe for Library
impl Send for Library
impl Sync for Library
impl Unpin for Library
impl UnwindSafe for Library
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