Struct nmap_analyze::nmap::Host[][src]

pub struct Host {
    pub starttime: usize,
    pub endtime: usize,
    pub status: HostStatus,
    pub address: Address,
    pub hostnames: Vec<HostName>,
    pub ports: Vec<Port>,
    pub extra_ports: Option<Vec<ExtraPorts>>,
}

Fields

A host may have multiple address. For example, if the host is part of the same broadcast domain, i.e., on the same LAN, the MAC address is saved as well. Since we currently only scan remote targets, we ignore this special case for now.

Trait Implementations

impl Debug for Host
[src]

Formats the value using the given formatter. Read more

impl SanityCheck for Host
[src]

Auto Trait Implementations

impl Send for Host

impl Sync for Host