pub struct EdrMapping {
pub vendor: String,
pub events: Vec<String>,
}Expand description
The sensor events one EDR product would surface for a finding, derived by
classifying its native telemetry into event classes (see edr.rs).
Fields§
§vendor: StringHuman-readable vendor label, e.g. “CrowdStrike Falcon”.
events: Vec<String>Sensor events / hunting tables for this vendor, deduplicated.
Trait Implementations§
Source§impl Clone for EdrMapping
impl Clone for EdrMapping
Source§fn clone(&self) -> EdrMapping
fn clone(&self) -> EdrMapping
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 EdrMapping
impl Debug for EdrMapping
Source§impl<'de> Deserialize<'de> for EdrMapping
impl<'de> Deserialize<'de> for EdrMapping
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EdrMapping
impl RefUnwindSafe for EdrMapping
impl Send for EdrMapping
impl Sync for EdrMapping
impl Unpin for EdrMapping
impl UnsafeUnpin for EdrMapping
impl UnwindSafe for EdrMapping
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