pub enum ReifyError {
NonPolynomial(String),
MalformedTerm,
}Expand description
Error during reification of a term to polynomial form.
Variants§
NonPolynomial(String)
Term contains operations not supported in polynomial arithmetic.
This includes division, modulo, and unknown function symbols.
MalformedTerm
Term has an unexpected structure that cannot be parsed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReifyError
impl RefUnwindSafe for ReifyError
impl Send for ReifyError
impl Sync for ReifyError
impl Unpin for ReifyError
impl UnwindSafe for ReifyError
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