pub struct Scan {
pub scan_id: Option<u64>,
pub scan_type: Option<String>,
pub status: Option<String>,
pub scan_url: Option<String>,
pub modified_date: Option<String>,
pub internal_status: Option<String>,
pub links: Option<Vec<Link>>,
pub fallback_type: Option<String>,
pub full_type: Option<String>,
}Expand description
Scan information.
Fields§
§scan_id: Option<u64>Scan ID
scan_type: Option<String>Type of scan (STATIC, DYNAMIC, etc.)
status: Option<String>Scan status
scan_url: Option<String>URL to the scan results
modified_date: Option<String>When the scan was last modified
internal_status: Option<String>Internal scan status
links: Option<Vec<Link>>Related links
fallback_type: Option<String>Fallback scan type
full_type: Option<String>Full scan type
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Scan
impl<'de> Deserialize<'de> for Scan
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 Scan
impl RefUnwindSafe for Scan
impl Send for Scan
impl Sync for Scan
impl Unpin for Scan
impl UnwindSafe for Scan
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