pub struct ScanResults {
pub count_existing: Option<i64>,
pub count_failed: Option<i64>,
pub count_hosts: Option<i64>,
pub count_new: Option<i64>,
pub count_subdomains: Option<i64>,
pub error: Option<String>,
pub failed_targets: Option<Vec<TargetError>>,
pub item_names: Option<Vec<String>>,
}Expand description
ScanResults : ScanResults contains detailed results from a certificate scan
Fields§
§count_existing: Option<i64>§count_failed: Option<i64>§count_hosts: Option<i64>§count_new: Option<i64>§count_subdomains: Option<i64>§error: Option<String>§failed_targets: Option<Vec<TargetError>>§item_names: Option<Vec<String>>Implementations§
Source§impl ScanResults
impl ScanResults
Sourcepub fn new() -> ScanResults
pub fn new() -> ScanResults
ScanResults contains detailed results from a certificate scan
Trait Implementations§
Source§impl Clone for ScanResults
impl Clone for ScanResults
Source§fn clone(&self) -> ScanResults
fn clone(&self) -> ScanResults
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScanResults
impl Debug for ScanResults
Source§impl Default for ScanResults
impl Default for ScanResults
Source§fn default() -> ScanResults
fn default() -> ScanResults
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScanResults
impl<'de> Deserialize<'de> for ScanResults
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
Source§impl PartialEq for ScanResults
impl PartialEq for ScanResults
Source§fn eq(&self, other: &ScanResults) -> bool
fn eq(&self, other: &ScanResults) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScanResults
impl Serialize for ScanResults
impl StructuralPartialEq for ScanResults
Auto Trait Implementations§
impl Freeze for ScanResults
impl RefUnwindSafe for ScanResults
impl Send for ScanResults
impl Sync for ScanResults
impl Unpin for ScanResults
impl UnsafeUnpin for ScanResults
impl UnwindSafe for ScanResults
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