[][src]Struct fuzzcheck_arg_parser::CommandLineArguments

pub struct CommandLineArguments {
    pub command: FuzzerCommand,
    pub max_nbr_of_runs: Option<usize>,
    pub max_input_cplx: Option<f64>,
    pub timeout: Option<usize>,
    pub corpus_size: Option<usize>,
    pub input_file: Option<PathBuf>,
    pub corpus_in: Option<PathBuf>,
    pub corpus_out: Option<PathBuf>,
    pub artifacts_folder: Option<PathBuf>,
    pub no_in_corpus: Option<()>,
    pub no_out_corpus: Option<()>,
    pub no_artifacts: Option<()>,
}

Fields

command: FuzzerCommandmax_nbr_of_runs: Option<usize>max_input_cplx: Option<f64>timeout: Option<usize>corpus_size: Option<usize>input_file: Option<PathBuf>corpus_in: Option<PathBuf>corpus_out: Option<PathBuf>artifacts_folder: Option<PathBuf>no_in_corpus: Option<()>no_out_corpus: Option<()>no_artifacts: Option<()>

Implementations

impl CommandLineArguments[src]

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

pub fn resolved(
    &self,
    defaults: DefaultArguments
) -> ResolvedCommandLineArguments
[src]

Trait Implementations

impl Clone for CommandLineArguments[src]

impl Debug for CommandLineArguments[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.