Struct proptest::strategy::CheckStrategySanityOptions
source · [−]pub struct CheckStrategySanityOptions {
pub strict_complicate_after_simplify: bool,
pub error_on_local_rejects: bool,
/* private fields */
}
Expand description
Options passed to check_strategy_sanity()
.
Fields
strict_complicate_after_simplify: bool
If true (the default), require that complicate()
return true
at
least once after any call to simplify()
which itself returns once.
This property is not required by contract, but many strategies are designed in a way that this is expected to hold.
error_on_local_rejects: bool
If true, cause local rejects to return an error instead of retrying. Defaults to false. Useful for testing behaviors around error handling.
Trait Implementations
sourceimpl Clone for CheckStrategySanityOptions
impl Clone for CheckStrategySanityOptions
sourcefn clone(&self) -> CheckStrategySanityOptions
fn clone(&self) -> CheckStrategySanityOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CheckStrategySanityOptions
impl Debug for CheckStrategySanityOptions
sourceimpl Default for CheckStrategySanityOptions
impl Default for CheckStrategySanityOptions
impl Copy for CheckStrategySanityOptions
Auto Trait Implementations
impl RefUnwindSafe for CheckStrategySanityOptions
impl Send for CheckStrategySanityOptions
impl Sync for CheckStrategySanityOptions
impl Unpin for CheckStrategySanityOptions
impl UnwindSafe for CheckStrategySanityOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more