pub struct ScanView {
pub created_at: Option<i32>,
pub critical: Option<i32>,
pub files: Option<i32>,
pub findings: Option<i32>,
pub high: Option<i32>,
pub id: Option<String>,
pub low: Option<i32>,
pub medium: Option<i32>,
pub project: Option<String>,
}Fields§
§created_at: Option<i32>CreatedAt is when the scan ran, in Unix milliseconds.
critical: Option<i32>Critical is how many findings carry the highest severity.
files: Option<i32>Files is how many files the scan read.
findings: Option<i32>Findings is how many secrets fired across them.
high: Option<i32>High is how many findings rank high.
id: Option<String>ID addresses this scan and every finding on it.
low: Option<i32>Low is how many findings rank low.
medium: Option<i32>Medium is how many findings rank medium.
project: Option<String>Project is the sub-scope the scan was filed under.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ScanView
impl<'de> Deserialize<'de> for ScanView
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
impl StructuralPartialEq for ScanView
Auto Trait Implementations§
impl Freeze for ScanView
impl RefUnwindSafe for ScanView
impl Send for ScanView
impl Sync for ScanView
impl Unpin for ScanView
impl UnsafeUnpin for ScanView
impl UnwindSafe for ScanView
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