pub struct CheckerConfig {
pub continue_on_error: bool,
pub verify_conclusions: bool,
pub allow_cycles: bool,
}Expand description
Configuration for proof checking
Fields§
§continue_on_error: boolWhether to continue checking after the first error
verify_conclusions: boolWhether to verify conclusion content (not just structure)
allow_cycles: boolWhether to allow cyclic dependencies (for some proof formats)
Trait Implementations§
Source§impl Clone for CheckerConfig
impl Clone for CheckerConfig
Source§fn clone(&self) -> CheckerConfig
fn clone(&self) -> CheckerConfig
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 CheckerConfig
impl Debug for CheckerConfig
Source§impl Default for CheckerConfig
impl Default for CheckerConfig
Source§fn default() -> CheckerConfig
fn default() -> CheckerConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CheckerConfig
impl RefUnwindSafe for CheckerConfig
impl Send for CheckerConfig
impl Sync for CheckerConfig
impl Unpin for CheckerConfig
impl UnsafeUnpin for CheckerConfig
impl UnwindSafe for CheckerConfig
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