pub struct ErrorObject {
pub error_type: Option<String>,
pub experimental: Option<Experimental>,
pub is_crash: Option<bool>,
pub message: Option<String>,
pub source_type: Option<String>,
pub stack: Option<StackTrace>,
pub thread_name: Option<String>,
pub threads: Option<Vec<ThreadData>>,
}Fields§
§error_type: Option<String>§experimental: Option<Experimental>§is_crash: Option<bool>§message: Option<String>§source_type: Option<String>§stack: Option<StackTrace>§thread_name: Option<String>§threads: Option<Vec<ThreadData>>Trait Implementations§
Source§impl Debug for ErrorObject
impl Debug for ErrorObject
Auto Trait Implementations§
impl Freeze for ErrorObject
impl RefUnwindSafe for ErrorObject
impl Send for ErrorObject
impl Sync for ErrorObject
impl Unpin for ErrorObject
impl UnsafeUnpin for ErrorObject
impl UnwindSafe for ErrorObject
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