pub struct ParsedStack {
pub message: Option<String>,
pub frames: Vec<StackFrame>,
}Expand description
Result of parsing a stack trace: the message line and the parsed frames.
Fields§
§message: Option<String>Error message (e.g. “Error: something went wrong”).
frames: Vec<StackFrame>Parsed stack frames.
Trait Implementations§
Source§impl Clone for ParsedStack
impl Clone for ParsedStack
Source§fn clone(&self) -> ParsedStack
fn clone(&self) -> ParsedStack
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsedStack
impl RefUnwindSafe for ParsedStack
impl Send for ParsedStack
impl Sync for ParsedStack
impl Unpin for ParsedStack
impl UnsafeUnpin for ParsedStack
impl UnwindSafe for ParsedStack
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