pub struct ComplianceFinding {
pub severity: FindingSeverity,
pub control_area: String,
pub description: String,
pub evidence: Vec<String>,
}Expand description
Individual compliance finding
Fields§
§severity: FindingSeverityFinding severity
control_area: StringControl area affected
description: StringDescription of finding
evidence: Vec<String>Evidence (log entry IDs or samples)
Trait Implementations§
Source§impl Clone for ComplianceFinding
impl Clone for ComplianceFinding
Source§fn clone(&self) -> ComplianceFinding
fn clone(&self) -> ComplianceFinding
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 ComplianceFinding
impl Debug for ComplianceFinding
Source§impl<'de> Deserialize<'de> for ComplianceFinding
impl<'de> Deserialize<'de> for ComplianceFinding
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 ComplianceFinding
impl RefUnwindSafe for ComplianceFinding
impl Send for ComplianceFinding
impl Sync for ComplianceFinding
impl Unpin for ComplianceFinding
impl UnwindSafe for ComplianceFinding
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