pub enum ValueMoreOrLess {
Value(usize),
More,
Less,
}Expand description
Enum used by Error::IncorrectNumberOfCoefficients.
Variants§
Trait Implementations§
Source§impl Clone for ValueMoreOrLess
impl Clone for ValueMoreOrLess
Source§fn clone(&self) -> ValueMoreOrLess
fn clone(&self) -> ValueMoreOrLess
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 ValueMoreOrLess
impl Debug for ValueMoreOrLess
Source§impl Display for ValueMoreOrLess
impl Display for ValueMoreOrLess
Source§impl From<usize> for ValueMoreOrLess
impl From<usize> for ValueMoreOrLess
Source§impl PartialEq for ValueMoreOrLess
impl PartialEq for ValueMoreOrLess
Source§fn eq(&self, other: &ValueMoreOrLess) -> bool
fn eq(&self, other: &ValueMoreOrLess) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ValueMoreOrLess
impl Eq for ValueMoreOrLess
impl StructuralPartialEq for ValueMoreOrLess
Auto Trait Implementations§
impl Freeze for ValueMoreOrLess
impl RefUnwindSafe for ValueMoreOrLess
impl Send for ValueMoreOrLess
impl Sync for ValueMoreOrLess
impl Unpin for ValueMoreOrLess
impl UnsafeUnpin for ValueMoreOrLess
impl UnwindSafe for ValueMoreOrLess
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