#[repr(u8)]pub enum DetectionFindingActivity {
Create = 1,
Update = 2,
Close = 3,
Other = 99,
}Expand description
OCSF activity IDs for Detection Finding.
Variants§
Create = 1
Create a new finding.
Update = 2
Update an existing finding.
Close = 3
Close a finding.
Other = 99
Other (vendor-specific).
Implementations§
Trait Implementations§
Source§impl Clone for DetectionFindingActivity
impl Clone for DetectionFindingActivity
Source§fn clone(&self) -> DetectionFindingActivity
fn clone(&self) -> DetectionFindingActivity
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 DetectionFindingActivity
impl Debug for DetectionFindingActivity
Source§impl<'de> Deserialize<'de> for DetectionFindingActivity
impl<'de> Deserialize<'de> for DetectionFindingActivity
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
Source§impl Hash for DetectionFindingActivity
impl Hash for DetectionFindingActivity
Source§impl PartialEq for DetectionFindingActivity
impl PartialEq for DetectionFindingActivity
Source§impl Serialize for DetectionFindingActivity
impl Serialize for DetectionFindingActivity
impl Copy for DetectionFindingActivity
impl Eq for DetectionFindingActivity
impl StructuralPartialEq for DetectionFindingActivity
Auto Trait Implementations§
impl Freeze for DetectionFindingActivity
impl RefUnwindSafe for DetectionFindingActivity
impl Send for DetectionFindingActivity
impl Sync for DetectionFindingActivity
impl Unpin for DetectionFindingActivity
impl UnsafeUnpin for DetectionFindingActivity
impl UnwindSafe for DetectionFindingActivity
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