[][src]Struct fuzzcheck_arg_parser::ResolvedCommandLineArguments

pub struct ResolvedCommandLineArguments {
    pub command: FuzzerCommand,
    pub max_nbr_of_runs: usize,
    pub max_input_cplx: f64,
    pub timeout: usize,
    pub corpus_size: usize,
    pub input_file: Option<PathBuf>,
    pub corpus_in: Option<PathBuf>,
    pub corpus_out: Option<PathBuf>,
    pub artifacts_folder: Option<PathBuf>,
}

Fields

command: FuzzerCommandmax_nbr_of_runs: usizemax_input_cplx: f64timeout: usizecorpus_size: usizeinput_file: Option<PathBuf>corpus_in: Option<PathBuf>corpus_out: Option<PathBuf>artifacts_folder: Option<PathBuf>

Implementations

impl ResolvedCommandLineArguments[src]

pub fn from_parser(options: &Options, args: &[String]) -> Result<Self, String>[src]

Get the command line arguments to the fuzzer from the option parser

Errors

TODO

Trait Implementations

impl Clone for ResolvedCommandLineArguments[src]

impl Debug for ResolvedCommandLineArguments[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.