pub enum SMTRes {
Sat(String, Option<String>),
Unsat(String, Option<String>),
Error(String, Option<String>),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SMTRes
impl RefUnwindSafe for SMTRes
impl Send for SMTRes
impl Sync for SMTRes
impl Unpin for SMTRes
impl UnwindSafe for SMTRes
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