pub enum SMTModelCheckerInitializationError {
ResetsOrDecrements,
}Expand description
Errors that can occur during the initialization of the SMT model checker
Variants§
ResetsOrDecrements
Threshold automaton has decrements or resets
Trait Implementations§
Source§impl Clone for SMTModelCheckerInitializationError
impl Clone for SMTModelCheckerInitializationError
Source§fn clone(&self) -> SMTModelCheckerInitializationError
fn clone(&self) -> SMTModelCheckerInitializationError
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 Error for SMTModelCheckerInitializationError
impl Error for SMTModelCheckerInitializationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for SMTModelCheckerInitializationError
impl PartialEq for SMTModelCheckerInitializationError
Source§fn eq(&self, other: &SMTModelCheckerInitializationError) -> bool
fn eq(&self, other: &SMTModelCheckerInitializationError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SMTModelCheckerInitializationError
impl StructuralPartialEq for SMTModelCheckerInitializationError
Auto Trait Implementations§
impl Freeze for SMTModelCheckerInitializationError
impl RefUnwindSafe for SMTModelCheckerInitializationError
impl Send for SMTModelCheckerInitializationError
impl Sync for SMTModelCheckerInitializationError
impl Unpin for SMTModelCheckerInitializationError
impl UnwindSafe for SMTModelCheckerInitializationError
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more