pub struct ErrorEvent {
pub url: String,
pub error_type: String,
pub message: String,
pub recoverable: bool,
}Expand description
Error event
Fields§
§url: StringError URL context
error_type: StringError type classification
message: StringError message
recoverable: boolWhether the error is recoverable
Trait Implementations§
Source§impl Debug for ErrorEvent
impl Debug for ErrorEvent
Auto Trait Implementations§
impl Freeze for ErrorEvent
impl RefUnwindSafe for ErrorEvent
impl Send for ErrorEvent
impl Sync for ErrorEvent
impl Unpin for ErrorEvent
impl UnwindSafe for ErrorEvent
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