pub enum SMTSolution {
UNSAT,
SAT,
}Expand description
Result of an SMT query
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SMTSolution
impl Clone for SMTSolution
Source§fn clone(&self) -> SMTSolution
fn clone(&self) -> SMTSolution
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 SMTSolution
impl Debug for SMTSolution
Source§impl Display for SMTSolution
impl Display for SMTSolution
Source§impl PartialEq for SMTSolution
impl PartialEq for SMTSolution
impl Copy for SMTSolution
impl StructuralPartialEq for SMTSolution
Auto Trait Implementations§
impl Freeze for SMTSolution
impl RefUnwindSafe for SMTSolution
impl Send for SMTSolution
impl Sync for SMTSolution
impl Unpin for SMTSolution
impl UnwindSafe for SMTSolution
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