pub enum CallStackInfo {
Ok,
MissingContext,
MissingMemory,
UnsupportedCpu,
DumpThreadSkipped,
}Expand description
Information about the results of unwinding a thread’s stack.
Variants§
Ok
Everything went great.
MissingContext
No MinidumpContext was provided, couldn’t do anything.
MissingMemory
No stack memory was provided, couldn’t unwind past the top frame.
UnsupportedCpu
The CPU type is unsupported.
DumpThreadSkipped
This thread wrote the minidump, it was skipped.
Trait Implementations§
Source§impl Clone for CallStackInfo
impl Clone for CallStackInfo
Source§fn clone(&self) -> CallStackInfo
fn clone(&self) -> CallStackInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CallStackInfo
impl Debug for CallStackInfo
impl Eq for CallStackInfo
Source§impl PartialEq for CallStackInfo
impl PartialEq for CallStackInfo
impl StructuralPartialEq for CallStackInfo
Auto Trait Implementations§
impl Freeze for CallStackInfo
impl RefUnwindSafe for CallStackInfo
impl Send for CallStackInfo
impl Sync for CallStackInfo
impl Unpin for CallStackInfo
impl UnsafeUnpin for CallStackInfo
impl UnwindSafe for CallStackInfo
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