pub enum MatrixName {
A,
B,
C,
}Expand description
Matrix identifier for SGEMM operations.
Variants§
Trait Implementations§
Source§impl Clone for MatrixName
impl Clone for MatrixName
Source§fn clone(&self) -> MatrixName
fn clone(&self) -> MatrixName
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 moreSource§impl Debug for MatrixName
impl Debug for MatrixName
Source§impl Display for MatrixName
impl Display for MatrixName
Source§impl PartialEq for MatrixName
impl PartialEq for MatrixName
Source§fn eq(&self, other: &MatrixName) -> bool
fn eq(&self, other: &MatrixName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MatrixName
impl Eq for MatrixName
impl StructuralPartialEq for MatrixName
Auto Trait Implementations§
impl Freeze for MatrixName
impl RefUnwindSafe for MatrixName
impl Send for MatrixName
impl Sync for MatrixName
impl Unpin for MatrixName
impl UnsafeUnpin for MatrixName
impl UnwindSafe for MatrixName
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