pub struct SecurityReport {
pub files: Vec<SecurityCheck>,
pub summary: ReportSummary,
}Expand description
Complete security analysis report for multiple files
Fields§
§files: Vec<SecurityCheck>Individual file analysis results
summary: ReportSummarySummary statistics
Trait Implementations§
Source§impl Debug for SecurityReport
impl Debug for SecurityReport
Source§impl<'de> Deserialize<'de> for SecurityReport
impl<'de> Deserialize<'de> for SecurityReport
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 SecurityReport
impl RefUnwindSafe for SecurityReport
impl Send for SecurityReport
impl Sync for SecurityReport
impl Unpin for SecurityReport
impl UnsafeUnpin for SecurityReport
impl UnwindSafe for SecurityReport
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