pub struct ReportSummary {
pub total_files: usize,
pub secure_files: usize,
pub insecure_files: usize,
pub unsupported_files: usize,
}Expand description
Summary statistics for a security report
Fields§
§total_files: usizeTotal number of files analyzed
secure_files: usizeNumber of files with good security posture
insecure_files: usizeNumber of files with security issues
unsupported_files: usizeNumber of files that couldn’t be analyzed
Trait Implementations§
Source§impl Debug for ReportSummary
impl Debug for ReportSummary
Source§impl<'de> Deserialize<'de> for ReportSummary
impl<'de> Deserialize<'de> for ReportSummary
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 ReportSummary
impl RefUnwindSafe for ReportSummary
impl Send for ReportSummary
impl Sync for ReportSummary
impl Unpin for ReportSummary
impl UnsafeUnpin for ReportSummary
impl UnwindSafe for ReportSummary
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