pub struct StacktrackReader { /* private fields */ }Implementations§
Source§impl StacktrackReader
impl StacktrackReader
Sourcepub unsafe fn new(vmo: &Vmo) -> Result<Self, Error>
pub unsafe fn new(vmo: &Vmo) -> Result<Self, Error>
§Safety
The caller must guarantee that the vmo is not accessed by others while the returned
instance is alive, usually by taking a snapshot of the VMO that StacktrackWriter
operates on and then reading the snapshot instead.
pub fn iter(&self) -> StacktrackIterator<'_> ⓘ
Auto Trait Implementations§
impl Freeze for StacktrackReader
impl RefUnwindSafe for StacktrackReader
impl Send for StacktrackReader
impl Sync for StacktrackReader
impl Unpin for StacktrackReader
impl UnsafeUnpin for StacktrackReader
impl UnwindSafe for StacktrackReader
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