pub struct ErrorOccurrence {
pub id: i64,
pub error_id: i64,
pub request_id: Option<String>,
pub user_id: Option<String>,
pub backtrace: Vec<String>,
pub params: Option<Value>,
pub happened_at: String,
pub source_context: Option<SourceContext>,
}Fields§
§id: i64§error_id: i64§request_id: Option<String>§user_id: Option<String>§backtrace: Vec<String>§params: Option<Value>§happened_at: String§source_context: Option<SourceContext>Trait Implementations§
Source§impl Clone for ErrorOccurrence
impl Clone for ErrorOccurrence
Source§fn clone(&self) -> ErrorOccurrence
fn clone(&self) -> ErrorOccurrence
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ErrorOccurrence
impl Debug for ErrorOccurrence
Source§impl<'de> Deserialize<'de> for ErrorOccurrence
impl<'de> Deserialize<'de> for ErrorOccurrence
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ErrorOccurrence
impl RefUnwindSafe for ErrorOccurrence
impl Send for ErrorOccurrence
impl Sync for ErrorOccurrence
impl Unpin for ErrorOccurrence
impl UnsafeUnpin for ErrorOccurrence
impl UnwindSafe for ErrorOccurrence
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