pub struct VmRegion {
pub address: u64,
pub size: u64,
pub name: Option<String>,
pub protection: String,
}Expand description
VM region information for the crash report.
Fields§
§address: u64Start address of the VM region.
size: u64Size of the VM region in bytes.
name: Option<String>User tag name for the region (e.g., "MALLOC_TINY", "__TEXT").
protection: StringProtection flags as a human-readable string (e.g., "r-x/rwx").
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VmRegion
impl RefUnwindSafe for VmRegion
impl Send for VmRegion
impl Sync for VmRegion
impl Unpin for VmRegion
impl UnsafeUnpin for VmRegion
impl UnwindSafe for VmRegion
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