#[repr(u32)]pub enum Cvc5UnknownExplanation {
CVC5_UNKNOWN_EXPLANATION_REQUIRES_FULL_CHECK = 0,
CVC5_UNKNOWN_EXPLANATION_INCOMPLETE = 1,
CVC5_UNKNOWN_EXPLANATION_TIMEOUT = 2,
CVC5_UNKNOWN_EXPLANATION_RESOURCEOUT = 3,
CVC5_UNKNOWN_EXPLANATION_MEMOUT = 4,
CVC5_UNKNOWN_EXPLANATION_INTERRUPTED = 5,
CVC5_UNKNOWN_EXPLANATION_UNSUPPORTED = 6,
CVC5_UNKNOWN_EXPLANATION_OTHER = 7,
CVC5_UNKNOWN_EXPLANATION_REQUIRES_CHECK_AGAIN = 8,
CVC5_UNKNOWN_EXPLANATION_UNKNOWN_REASON = 9,
CVC5_UNKNOWN_EXPLANATION_LAST = 10,
}Variants§
CVC5_UNKNOWN_EXPLANATION_REQUIRES_FULL_CHECK = 0
CVC5_UNKNOWN_EXPLANATION_INCOMPLETE = 1
CVC5_UNKNOWN_EXPLANATION_TIMEOUT = 2
CVC5_UNKNOWN_EXPLANATION_RESOURCEOUT = 3
CVC5_UNKNOWN_EXPLANATION_MEMOUT = 4
CVC5_UNKNOWN_EXPLANATION_INTERRUPTED = 5
CVC5_UNKNOWN_EXPLANATION_UNSUPPORTED = 6
CVC5_UNKNOWN_EXPLANATION_OTHER = 7
CVC5_UNKNOWN_EXPLANATION_REQUIRES_CHECK_AGAIN = 8
CVC5_UNKNOWN_EXPLANATION_UNKNOWN_REASON = 9
CVC5_UNKNOWN_EXPLANATION_LAST = 10
Trait Implementations§
Source§impl Clone for Cvc5UnknownExplanation
impl Clone for Cvc5UnknownExplanation
Source§fn clone(&self) -> Cvc5UnknownExplanation
fn clone(&self) -> Cvc5UnknownExplanation
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 Cvc5UnknownExplanation
impl Debug for Cvc5UnknownExplanation
Source§impl Hash for Cvc5UnknownExplanation
impl Hash for Cvc5UnknownExplanation
Source§impl PartialEq for Cvc5UnknownExplanation
impl PartialEq for Cvc5UnknownExplanation
impl Copy for Cvc5UnknownExplanation
impl Eq for Cvc5UnknownExplanation
impl StructuralPartialEq for Cvc5UnknownExplanation
Auto Trait Implementations§
impl Freeze for Cvc5UnknownExplanation
impl RefUnwindSafe for Cvc5UnknownExplanation
impl Send for Cvc5UnknownExplanation
impl Sync for Cvc5UnknownExplanation
impl Unpin for Cvc5UnknownExplanation
impl UnsafeUnpin for Cvc5UnknownExplanation
impl UnwindSafe for Cvc5UnknownExplanation
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