pub enum MatrixSize {
Small,
Medium,
Large,
}Variants§
Trait Implementations§
Source§impl Debug for MatrixSize
impl Debug for MatrixSize
impl Eq for MatrixSize
Source§impl Hash for MatrixSize
impl Hash for MatrixSize
Source§impl PartialEq for MatrixSize
impl PartialEq for MatrixSize
impl StructuralPartialEq for MatrixSize
Auto Trait Implementations§
impl Freeze for MatrixSize
impl RefUnwindSafe for MatrixSize
impl Send for MatrixSize
impl Sync for MatrixSize
impl Unpin for MatrixSize
impl UnsafeUnpin for MatrixSize
impl UnwindSafe for MatrixSize
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more