pub enum AlgebraicNumberError {
NonIsolatingInterval,
NoRootInInterval,
ZeroPolynomial,
InvalidOperation(String),
}Expand description
Algebraic number error types.
Variants§
NonIsolatingInterval
Interval doesn’t isolate a single root.
NoRootInInterval
Polynomial has no roots in interval.
ZeroPolynomial
Polynomial is zero.
InvalidOperation(String)
Invalid operation.
Trait Implementations§
Source§impl Clone for AlgebraicNumberError
impl Clone for AlgebraicNumberError
Source§fn clone(&self) -> AlgebraicNumberError
fn clone(&self) -> AlgebraicNumberError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AlgebraicNumberError
impl Debug for AlgebraicNumberError
Source§impl Display for AlgebraicNumberError
impl Display for AlgebraicNumberError
Source§impl Error for AlgebraicNumberError
impl Error for AlgebraicNumberError
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 AlgebraicNumberError
impl PartialEq for AlgebraicNumberError
Source§fn eq(&self, other: &AlgebraicNumberError) -> bool
fn eq(&self, other: &AlgebraicNumberError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AlgebraicNumberError
impl StructuralPartialEq for AlgebraicNumberError
Auto Trait Implementations§
impl Freeze for AlgebraicNumberError
impl RefUnwindSafe for AlgebraicNumberError
impl Send for AlgebraicNumberError
impl Sync for AlgebraicNumberError
impl Unpin for AlgebraicNumberError
impl UnsafeUnpin for AlgebraicNumberError
impl UnwindSafe for AlgebraicNumberError
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