pub struct RunnerOptions {
pub cases: u32,
pub sequence_len: RangeInclusive<usize>,
}Expand description
Configuration for proptest-driven run behavior.
Fields§
§cases: u32Number of proptest cases to execute.
sequence_len: RangeInclusive<usize>Range of invocation counts per generated sequence.
Trait Implementations§
Source§impl Clone for RunnerOptions
impl Clone for RunnerOptions
Source§fn clone(&self) -> RunnerOptions
fn clone(&self) -> RunnerOptions
Returns a duplicate 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 moreSource§impl Debug for RunnerOptions
impl Debug for RunnerOptions
Auto Trait Implementations§
impl Freeze for RunnerOptions
impl RefUnwindSafe for RunnerOptions
impl Send for RunnerOptions
impl Sync for RunnerOptions
impl Unpin for RunnerOptions
impl UnwindSafe for RunnerOptions
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