pub enum BackendTranspose {
NoTrans,
Trans,
ConjTrans,
}Expand description
Transpose mode for matrix operations.
Variants§
NoTrans
No transpose — use the matrix as-is.
Trans
Transpose (swap rows and columns).
ConjTrans
Conjugate transpose (Hermitian).
Trait Implementations§
Source§impl Clone for BackendTranspose
impl Clone for BackendTranspose
Source§fn clone(&self) -> BackendTranspose
fn clone(&self) -> BackendTranspose
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 BackendTranspose
impl Debug for BackendTranspose
Source§impl Display for BackendTranspose
impl Display for BackendTranspose
Source§impl Hash for BackendTranspose
impl Hash for BackendTranspose
Source§impl PartialEq for BackendTranspose
impl PartialEq for BackendTranspose
Source§fn eq(&self, other: &BackendTranspose) -> bool
fn eq(&self, other: &BackendTranspose) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BackendTranspose
impl Eq for BackendTranspose
impl StructuralPartialEq for BackendTranspose
Auto Trait Implementations§
impl Freeze for BackendTranspose
impl RefUnwindSafe for BackendTranspose
impl Send for BackendTranspose
impl Sync for BackendTranspose
impl Unpin for BackendTranspose
impl UnsafeUnpin for BackendTranspose
impl UnwindSafe for BackendTranspose
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