pub struct ErrorAuditEvent {
pub category: ErrorCategory,
pub target: ErrorTarget,
}Expand description
Deterministic audit event for a failed transaction.
Fields§
§category: ErrorCategoryError category.
target: ErrorTargetStable target involved in the error.
Trait Implementations§
Source§impl Clone for ErrorAuditEvent
impl Clone for ErrorAuditEvent
Source§fn clone(&self) -> ErrorAuditEvent
fn clone(&self) -> ErrorAuditEvent
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 ErrorAuditEvent
impl Debug for ErrorAuditEvent
impl Eq for ErrorAuditEvent
Source§impl PartialEq for ErrorAuditEvent
impl PartialEq for ErrorAuditEvent
Source§fn eq(&self, other: &ErrorAuditEvent) -> bool
fn eq(&self, other: &ErrorAuditEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ErrorAuditEvent
Auto Trait Implementations§
impl Freeze for ErrorAuditEvent
impl RefUnwindSafe for ErrorAuditEvent
impl Send for ErrorAuditEvent
impl Sync for ErrorAuditEvent
impl Unpin for ErrorAuditEvent
impl UnsafeUnpin for ErrorAuditEvent
impl UnwindSafe for ErrorAuditEvent
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