pub struct VerificationEvent {
pub timestamp: DateTime<Utc>,
pub event_type: VerificationEventType,
pub message: String,
pub context: HashMap<String, String>,
}Expand description
A verification event/error for the log
Fields§
§timestamp: DateTime<Utc>When this event occurred
event_type: VerificationEventTypeEvent type
message: StringEvent message
context: HashMap<String, String>Additional context
Implementations§
Trait Implementations§
Source§impl Clone for VerificationEvent
impl Clone for VerificationEvent
Source§fn clone(&self) -> VerificationEvent
fn clone(&self) -> VerificationEvent
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 VerificationEvent
impl Debug for VerificationEvent
Source§impl<'de> Deserialize<'de> for VerificationEvent
impl<'de> Deserialize<'de> for VerificationEvent
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 VerificationEvent
impl RefUnwindSafe for VerificationEvent
impl Send for VerificationEvent
impl Sync for VerificationEvent
impl Unpin for VerificationEvent
impl UnsafeUnpin for VerificationEvent
impl UnwindSafe for VerificationEvent
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