pub struct BinaryImage {
pub addr: Addr,
pub size: u64,
pub uuid: Uuid,
pub arch: String,
pub version: Option<String>,
pub name: String,
pub path: String,
}Expand description
A single binary image in the crash.
Fields§
§addr: AddrThe address of the image,
size: u64The size of the image,
uuid: UuidThe unique ID of the image,
arch: StringThe architecture of the image,
version: Option<String>The version of the image if available. This might require further parsing.
name: StringThe short name of the image.
path: StringThe full path of the image.
Trait Implementations§
Source§impl Debug for BinaryImage
impl Debug for BinaryImage
Auto Trait Implementations§
impl Freeze for BinaryImage
impl RefUnwindSafe for BinaryImage
impl Send for BinaryImage
impl Sync for BinaryImage
impl Unpin for BinaryImage
impl UnwindSafe for BinaryImage
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