pub enum MatrixGenError {
UnsupportedInput,
FieldTooSmall,
}Variants§
UnsupportedInput
Only values of r up to 2 are supported.
FieldTooSmall
The provided field GF(p) must have a size such that p / l - 1 < k / l.
Trait Implementations§
Source§impl Debug for MatrixGenError
impl Debug for MatrixGenError
Source§impl PartialEq for MatrixGenError
impl PartialEq for MatrixGenError
impl StructuralPartialEq for MatrixGenError
Auto Trait Implementations§
impl Freeze for MatrixGenError
impl RefUnwindSafe for MatrixGenError
impl Send for MatrixGenError
impl Sync for MatrixGenError
impl Unpin for MatrixGenError
impl UnwindSafe for MatrixGenError
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