[][src]Struct nmap_analyze::nmap::Run

pub struct Run {
    pub scanner: String,
    pub args: String,
    pub start: u64,
    pub hosts: Vec<Host>,
}

Fields

scanner: Stringargs: Stringstart: u64hosts: Vec<Host>

Trait Implementations

impl FromFile for Run[src]

fn from_file<P: AsRef<Path>, E>(path: P) -> Result<Self, Error> where
    Self: Sized + FromStr<Err = E>,
    E: ChainedError
[src]

fn string_from_file<P: AsRef<Path>>(path: P) -> Result<String, Error>[src]

impl SanityCheck for Run[src]

type Error = Error

impl Debug for Run[src]

impl FromStr for Run[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for Run

impl Sync for Run

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T