pub struct ExceptionThrownParams {
pub timestamp: Timestamp,
pub exception_details: ExceptionDetails,
}Expand description
Issued when exception was thrown and unhandled. exceptionThrown
Fields§
§timestamp: TimestampTimestamp of the exception.
exception_details: ExceptionDetailsTrait Implementations§
Source§impl Clone for ExceptionThrownParams
impl Clone for ExceptionThrownParams
Source§fn clone(&self) -> ExceptionThrownParams
fn clone(&self) -> ExceptionThrownParams
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 ExceptionThrownParams
impl Debug for ExceptionThrownParams
Source§impl<'de> Deserialize<'de> for ExceptionThrownParams
impl<'de> Deserialize<'de> for ExceptionThrownParams
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
Source§impl PartialEq for ExceptionThrownParams
impl PartialEq for ExceptionThrownParams
Source§impl Serialize for ExceptionThrownParams
impl Serialize for ExceptionThrownParams
impl StructuralPartialEq for ExceptionThrownParams
Auto Trait Implementations§
impl Freeze for ExceptionThrownParams
impl RefUnwindSafe for ExceptionThrownParams
impl Send for ExceptionThrownParams
impl Sync for ExceptionThrownParams
impl Unpin for ExceptionThrownParams
impl UnsafeUnpin for ExceptionThrownParams
impl UnwindSafe for ExceptionThrownParams
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