pub struct FieldMatch {
pub field: String,
pub value: Value,
}Expand description
A specific field match within a detection.
Fields§
§field: StringThe field name that matched.
value: ValueThe event value that triggered the match.
Trait Implementations§
Source§impl Clone for FieldMatch
impl Clone for FieldMatch
Source§fn clone(&self) -> FieldMatch
fn clone(&self) -> FieldMatch
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 FieldMatch
impl Debug for FieldMatch
Auto Trait Implementations§
impl Freeze for FieldMatch
impl RefUnwindSafe for FieldMatch
impl Send for FieldMatch
impl Sync for FieldMatch
impl Unpin for FieldMatch
impl UnsafeUnpin for FieldMatch
impl UnwindSafe for FieldMatch
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