pub struct ProcessDriftEvent {
pub process_type: String,
pub related_event_id: String,
pub detection_difficulty: DetectionDifficulty,
pub affected_processes: Vec<String>,
}Expand description
Process drift event.
Fields§
§process_type: StringProcess type (e.g., “automation”, “workflow_change”).
Related event ID.
detection_difficulty: DetectionDifficultyDetection difficulty.
affected_processes: Vec<String>Affected processes.
Trait Implementations§
Source§impl Clone for ProcessDriftEvent
impl Clone for ProcessDriftEvent
Source§fn clone(&self) -> ProcessDriftEvent
fn clone(&self) -> ProcessDriftEvent
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 ProcessDriftEvent
impl Debug for ProcessDriftEvent
Source§impl<'de> Deserialize<'de> for ProcessDriftEvent
impl<'de> Deserialize<'de> for ProcessDriftEvent
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 ProcessDriftEvent
impl RefUnwindSafe for ProcessDriftEvent
impl Send for ProcessDriftEvent
impl Sync for ProcessDriftEvent
impl Unpin for ProcessDriftEvent
impl UnwindSafe for ProcessDriftEvent
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