pub struct PlainEvent { /* private fields */ }Expand description
Raw log line event (keyword matching only).
get_field always returns None. Useful for keyword-only Sigma rules.
Implementations§
Trait Implementations§
Source§impl Clone for PlainEvent
impl Clone for PlainEvent
Source§fn clone(&self) -> PlainEvent
fn clone(&self) -> PlainEvent
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 PlainEvent
impl Debug for PlainEvent
Source§impl Event for PlainEvent
impl Event for PlainEvent
Source§fn get_field(&self, _path: &str) -> Option<EventValue<'_>>
fn get_field(&self, _path: &str) -> Option<EventValue<'_>>
Look up a field by name. Supports dot-notation for nested access. Read more
Auto Trait Implementations§
impl Freeze for PlainEvent
impl RefUnwindSafe for PlainEvent
impl Send for PlainEvent
impl Sync for PlainEvent
impl Unpin for PlainEvent
impl UnsafeUnpin for PlainEvent
impl UnwindSafe for PlainEvent
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