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§
source§impl Clone for CheckStrategySanityOptions
impl Clone for CheckStrategySanityOptions
source§fn clone(&self) -> CheckStrategySanityOptions
fn clone(&self) -> CheckStrategySanityOptions
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 moresource§impl Debug for CheckStrategySanityOptions
impl Debug for CheckStrategySanityOptions
source§impl Default for CheckStrategySanityOptions
impl Default for CheckStrategySanityOptions
impl Copy for CheckStrategySanityOptions
Auto Trait Implementations§
impl Freeze for CheckStrategySanityOptions
impl RefUnwindSafe for CheckStrategySanityOptions
impl Send for CheckStrategySanityOptions
impl Sync for CheckStrategySanityOptions
impl Unpin for CheckStrategySanityOptions
impl UnwindSafe for CheckStrategySanityOptions
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)