pub struct Snapshot {
pub page_size: u64,
pub stack_traces: Vec<StackTrace>,
pub executable_regions: Vec<ExecutableRegion>,
}Expand description
Contains all the data received over a SnapshotReceiver channel.
Fields§
§page_size: u64The page size of the system, if reported.
stack_traces: Vec<StackTrace>All the stack traces collected, one per thread.
executable_regions: Vec<ExecutableRegion>All the executable memory regions in the analyzed process.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Snapshot
impl RefUnwindSafe for Snapshot
impl Send for Snapshot
impl Sync for Snapshot
impl Unpin for Snapshot
impl UnsafeUnpin for Snapshot
impl UnwindSafe for Snapshot
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