pub enum Trans {
No,
T,
C,
}Expand description
How to interpret a matrix operand: as-is, transposed, or conjugate-transposed.
Variants§
No
Use the matrix as stored.
T
Use the transpose Aᵀ.
C
Use the conjugate transpose Aᴴ. Equivalent to T for real matrices.
Trait Implementations§
impl Copy for Trans
impl Eq for Trans
impl StructuralPartialEq for Trans
Auto Trait Implementations§
impl Freeze for Trans
impl RefUnwindSafe for Trans
impl Send for Trans
impl Sync for Trans
impl Unpin for Trans
impl UnsafeUnpin for Trans
impl UnwindSafe for Trans
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