Struct linux_perf_data::DsoInfo
source · 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§
source§impl PartialEq<DsoInfo> for DsoInfo
impl PartialEq<DsoInfo> for DsoInfo
impl Eq for DsoInfo
impl StructuralEq for DsoInfo
impl StructuralPartialEq for DsoInfo
Auto Trait Implementations§
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