pub enum InterpolationError {
NoRoot,
NodeNotFound(ProofNodeId),
NoColor(ProofNodeId),
TooFewFormulas,
ValidationFailed(String),
TheoryNotSupported(String),
}Expand description
Errors during interpolation
Variants§
NoRoot
Proof has no root
NodeNotFound(ProofNodeId)
Node not found in proof
NoColor(ProofNodeId)
Node has no computed color
TooFewFormulas
Too few formulas for sequence interpolation
ValidationFailed(String)
Interpolant validation failed
TheoryNotSupported(String)
Theory interpolation not supported
Trait Implementations§
Source§impl Clone for InterpolationError
impl Clone for InterpolationError
Source§fn clone(&self) -> InterpolationError
fn clone(&self) -> InterpolationError
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 InterpolationError
impl Debug for InterpolationError
Source§impl Display for InterpolationError
impl Display for InterpolationError
Source§impl Error for InterpolationError
impl Error for InterpolationError
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()
Auto Trait Implementations§
impl Freeze for InterpolationError
impl RefUnwindSafe for InterpolationError
impl Send for InterpolationError
impl Sync for InterpolationError
impl Unpin for InterpolationError
impl UnsafeUnpin for InterpolationError
impl UnwindSafe for InterpolationError
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