pub struct AuditParams<'a> {
pub ts: &'a str,
pub event: &'a str,
pub fields: &'a Map<String, Value>,
}Fields§
§ts: &'a str§event: &'a str§fields: &'a Map<String, Value>Free-form event payload. The exact keys depend on the variant —
see [crate::methods::audit::AuditEvent] for the canonical shape.
Trait Implementations§
Source§impl<'a> Debug for AuditParams<'a>
impl<'a> Debug for AuditParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for AuditParams<'a>
impl<'a> RefUnwindSafe for AuditParams<'a>
impl<'a> Send for AuditParams<'a>
impl<'a> Sync for AuditParams<'a>
impl<'a> Unpin for AuditParams<'a>
impl<'a> UnsafeUnpin for AuditParams<'a>
impl<'a> UnwindSafe for AuditParams<'a>
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