pub struct SecurityAuditReport {
pub plugin_id: String,
pub plugin_version: String,
pub report_timestamp: String,
pub scan_result: SecurityScanResult,
pub license_compliances: Vec<LicenseCompliance>,
pub recommendations: Vec<String>,
pub approved: bool,
}Expand description
Audit report combining security scan and compliance
Fields§
§plugin_id: String§plugin_version: String§report_timestamp: String§scan_result: SecurityScanResult§license_compliances: Vec<LicenseCompliance>§recommendations: Vec<String>§approved: boolImplementations§
Source§impl SecurityAuditReport
impl SecurityAuditReport
Sourcepub fn generate_recommendations(&mut self)
pub fn generate_recommendations(&mut self)
Generate recommendations based on scan results
Trait Implementations§
Source§impl Clone for SecurityAuditReport
impl Clone for SecurityAuditReport
Source§fn clone(&self) -> SecurityAuditReport
fn clone(&self) -> SecurityAuditReport
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 SecurityAuditReport
impl Debug for SecurityAuditReport
Source§impl<'de> Deserialize<'de> for SecurityAuditReport
impl<'de> Deserialize<'de> for SecurityAuditReport
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 SecurityAuditReport
impl RefUnwindSafe for SecurityAuditReport
impl Send for SecurityAuditReport
impl Sync for SecurityAuditReport
impl Unpin for SecurityAuditReport
impl UnsafeUnpin for SecurityAuditReport
impl UnwindSafe for SecurityAuditReport
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