pub enum PolynomialError {
EvenPoly,
TooLarge,
}
Expand description
Errors generated when trying to create invalid polynomials.
Tried to create an even polynomial.
The hardware CRC unit only supports odd polynomials.
Tried to create a 7-bit polynomial with an 8-bit number
(greater than 0x7F
).
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.