pub struct CheckerPolicy {
pub strict_mode: bool,
pub solver: &'static str,
pub exposes_batch_queue: bool,
}Expand description
Stable checker policy values exposed by this crate.
Fields§
§strict_mode: boolWhether strict mode is always enforced.
solver: &'static strActive solver policy string.
exposes_batch_queue: boolWhether batch queue support is exposed by this crate.
Trait Implementations§
Source§impl Clone for CheckerPolicy
impl Clone for CheckerPolicy
Source§fn clone(&self) -> CheckerPolicy
fn clone(&self) -> CheckerPolicy
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 CheckerPolicy
impl Debug for CheckerPolicy
Source§impl PartialEq for CheckerPolicy
impl PartialEq for CheckerPolicy
impl Copy for CheckerPolicy
impl Eq for CheckerPolicy
impl StructuralPartialEq for CheckerPolicy
Auto Trait Implementations§
impl Freeze for CheckerPolicy
impl RefUnwindSafe for CheckerPolicy
impl Send for CheckerPolicy
impl Sync for CheckerPolicy
impl Unpin for CheckerPolicy
impl UnsafeUnpin for CheckerPolicy
impl UnwindSafe for CheckerPolicy
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