pub enum SMTSolverBuilderError {
NotInstalled(String),
}Expand description
Error that can occur when creating a new SMTSolverBuilder
Variants§
Trait Implementations§
Source§impl Clone for SMTSolverBuilderError
impl Clone for SMTSolverBuilderError
Source§fn clone(&self) -> SMTSolverBuilderError
fn clone(&self) -> SMTSolverBuilderError
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 SMTSolverBuilderError
impl Debug for SMTSolverBuilderError
Source§impl Display for SMTSolverBuilderError
impl Display for SMTSolverBuilderError
Source§impl Error for SMTSolverBuilderError
impl Error for SMTSolverBuilderError
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 SMTSolverBuilderError
impl PartialEq for SMTSolverBuilderError
impl StructuralPartialEq for SMTSolverBuilderError
Auto Trait Implementations§
impl Freeze for SMTSolverBuilderError
impl RefUnwindSafe for SMTSolverBuilderError
impl Send for SMTSolverBuilderError
impl Sync for SMTSolverBuilderError
impl Unpin for SMTSolverBuilderError
impl UnwindSafe for SMTSolverBuilderError
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