pub struct Event {
pub schema_version: u32,
pub severity: Severity,
pub event: EventKind,
pub timestamp: String,
pub message: String,
pub connection_id: Option<u64>,
pub request_seq: Option<u32>,
pub fields: Vec<Field>,
}Fields§
§schema_version: u32§severity: Severity§event: EventKind§timestamp: String§message: String§connection_id: Option<u64>§request_seq: Option<u32>§fields: Vec<Field>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnsafeUnpin for Event
impl UnwindSafe for Event
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