pub enum RKError {
EmptyTableau,
JaggedTableau,
TooManyColumns(usize, usize),
NonSquareTableau(usize, usize),
UnsupportedImplicit,
}
Variants§
EmptyTableau
JaggedTableau
TooManyColumns(usize, usize)
NonSquareTableau(usize, usize)
UnsupportedImplicit
Trait Implementations§
impl Copy for RKError
impl StructuralPartialEq for RKError
Auto Trait Implementations§
impl Freeze for RKError
impl RefUnwindSafe for RKError
impl Send for RKError
impl Sync for RKError
impl Unpin for RKError
impl UnwindSafe for RKError
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