pub struct DeviationFinding {
pub deviation_type: DeviationType,
pub agent_id: String,
pub confidence: u32,
pub description: String,
}Expand description
A behavioral deviation finding.
Fields§
§deviation_type: DeviationType§agent_id: String§confidence: u32§description: StringTrait Implementations§
Source§impl Clone for DeviationFinding
impl Clone for DeviationFinding
Source§fn clone(&self) -> DeviationFinding
fn clone(&self) -> DeviationFinding
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 moreAuto Trait Implementations§
impl Freeze for DeviationFinding
impl RefUnwindSafe for DeviationFinding
impl Send for DeviationFinding
impl Sync for DeviationFinding
impl Unpin for DeviationFinding
impl UnsafeUnpin for DeviationFinding
impl UnwindSafe for DeviationFinding
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