pub struct PanicReport {
pub thread_id: ThreadId,
pub message: String,
pub backtrace: String,
}Expand description
PanicInfo displays panic information.
Fields§
§thread_id: ThreadId§message: String§backtrace: StringTrait Implementations§
Source§impl Clone for PanicReport
impl Clone for PanicReport
Source§fn clone(&self) -> PanicReport
fn clone(&self) -> PanicReport
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 moreSource§impl Debug for PanicReport
impl Debug for PanicReport
Auto Trait Implementations§
impl Freeze for PanicReport
impl RefUnwindSafe for PanicReport
impl Send for PanicReport
impl Sync for PanicReport
impl Unpin for PanicReport
impl UnwindSafe for PanicReport
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