pub struct FuzzOptions {
pub skipped: Option<Vec<String>>,
pub subdir: Option<String>,
pub edits: usize,
pub iterations: usize,
pub include: Option<Regex>,
pub exclude: Option<Regex>,
pub log_graphs: bool,
pub log: bool,
}
Fields§
§skipped: Option<Vec<String>>
§subdir: Option<String>
§edits: usize
§iterations: usize
§include: Option<Regex>
§exclude: Option<Regex>
§log_graphs: bool
§log: bool
Auto Trait Implementations§
impl Freeze for FuzzOptions
impl RefUnwindSafe for FuzzOptions
impl Send for FuzzOptions
impl Sync for FuzzOptions
impl Unpin for FuzzOptions
impl UnwindSafe for FuzzOptions
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