pub enum PolynomialXorError {
TooManyCoefficients,
}Expand description
Errors of polynomial XOR with a coefficient iterator.
Variants§
TooManyCoefficients
The iterator yielded more coefficients than a polynomial can store.
Trait Implementations§
Source§impl Clone for PolynomialXorError
impl Clone for PolynomialXorError
Source§fn clone(&self) -> PolynomialXorError
fn clone(&self) -> PolynomialXorError
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 moreimpl Copy for PolynomialXorError
Source§impl Debug for PolynomialXorError
impl Debug for PolynomialXorError
Source§impl Display for PolynomialXorError
impl Display for PolynomialXorError
impl Eq for PolynomialXorError
Source§impl Error for PolynomialXorError
impl Error for PolynomialXorError
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 Hash for PolynomialXorError
impl Hash for PolynomialXorError
Source§impl Ord for PolynomialXorError
impl Ord for PolynomialXorError
Source§fn cmp(&self, other: &PolynomialXorError) -> Ordering
fn cmp(&self, other: &PolynomialXorError) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PolynomialXorError
impl PartialEq for PolynomialXorError
Source§impl PartialOrd for PolynomialXorError
impl PartialOrd for PolynomialXorError
impl StructuralPartialEq for PolynomialXorError
Auto Trait Implementations§
impl Freeze for PolynomialXorError
impl RefUnwindSafe for PolynomialXorError
impl Send for PolynomialXorError
impl Sync for PolynomialXorError
impl Unpin for PolynomialXorError
impl UnsafeUnpin for PolynomialXorError
impl UnwindSafe for PolynomialXorError
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