pub struct ErrorObject {
pub error_type: Option<String>,
pub message: Option<String>,
pub stack: Option<StackTrace>,
pub is_crash: Option<bool>,
pub fingerprint: Option<String>,
pub source_type: Option<String>,
pub experimental: Option<Experimental>,
}Fields§
§error_type: Option<String>§message: Option<String>§stack: Option<StackTrace>§is_crash: Option<bool>§fingerprint: Option<String>§source_type: Option<String>§experimental: Option<Experimental>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