pub enum TransposeMode {
NoTranspose = 0,
Transpose = 1,
}Expand description
Denotes whether a linear transformation or its transpose should be applied
Variants§
Trait Implementations§
Source§impl Clone for TransposeMode
impl Clone for TransposeMode
Source§fn clone(&self) -> TransposeMode
fn clone(&self) -> TransposeMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for TransposeMode
impl PartialEq for TransposeMode
impl Copy for TransposeMode
impl Eq for TransposeMode
impl StructuralPartialEq for TransposeMode
Auto Trait Implementations§
impl Freeze for TransposeMode
impl RefUnwindSafe for TransposeMode
impl Send for TransposeMode
impl Sync for TransposeMode
impl Unpin for TransposeMode
impl UnwindSafe for TransposeMode
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