pub struct DsoInfo {
pub path: Vec<u8>,
pub build_id: Vec<u8>,
}
Expand description
The file path and the build ID of a DSO.
Fields§
§path: Vec<u8>
The file path. Can be an absolute path or a special string
of various forms, e.g. [vdso]
.
build_id: Vec<u8>
The build ID.
Trait Implementations§
impl Eq for DsoInfo
impl StructuralPartialEq for DsoInfo
Auto Trait Implementations§
impl Freeze for DsoInfo
impl RefUnwindSafe for DsoInfo
impl Send for DsoInfo
impl Sync for DsoInfo
impl Unpin for DsoInfo
impl UnwindSafe for DsoInfo
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