pub struct NmapScanResult {
pub domain: String,
pub ip: String,
pub scan_time_secs: f64,
pub dns_info: DnsInfo,
pub open_ports: Vec<PortInfo>,
pub vulnerabilities: Vec<VulnerabilityInfo>,
}Available on crate feature
nmap-zero-day only.Fields§
§domain: String§ip: String§scan_time_secs: f64§dns_info: DnsInfo§open_ports: Vec<PortInfo>§vulnerabilities: Vec<VulnerabilityInfo>Trait Implementations§
Source§impl Clone for NmapScanResult
impl Clone for NmapScanResult
Source§fn clone(&self) -> NmapScanResult
fn clone(&self) -> NmapScanResult
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 NmapScanResult
impl Debug for NmapScanResult
Source§impl<'de> Deserialize<'de> for NmapScanResult
impl<'de> Deserialize<'de> for NmapScanResult
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 NmapScanResult
impl RefUnwindSafe for NmapScanResult
impl Send for NmapScanResult
impl Sync for NmapScanResult
impl Unpin for NmapScanResult
impl UnsafeUnpin for NmapScanResult
impl UnwindSafe for NmapScanResult
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