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: FuzzerCommand
§max_nbr_of_runs: usize
§max_input_cplx: f64
§timeout: usize
§corpus_size: usize
§input_file: Option<PathBuf>
§corpus_in: Option<PathBuf>
§corpus_out: Option<PathBuf>
§artifacts_folder: Option<PathBuf>
Implementations§
Trait Implementations§
Source§impl Clone for ResolvedCommandLineArguments
impl Clone for ResolvedCommandLineArguments
Source§fn clone(&self) -> ResolvedCommandLineArguments
fn clone(&self) -> ResolvedCommandLineArguments
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ResolvedCommandLineArguments
impl RefUnwindSafe for ResolvedCommandLineArguments
impl Send for ResolvedCommandLineArguments
impl Sync for ResolvedCommandLineArguments
impl Unpin for ResolvedCommandLineArguments
impl UnwindSafe for ResolvedCommandLineArguments
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