#[repr(u32)]pub enum blas_trans_type {
blas_no_trans = 111,
blas_trans = 112,
blas_conj_trans = 113,
}Expand description
Used to specify a transposition operator to a matrix operand.
Variants§
blas_no_trans = 111
< No transposition.
blas_trans = 112
< Transposition.
blas_conj_trans = 113
< Transposition and conjugation.
Trait Implementations§
Source§impl Clone for blas_trans_type
impl Clone for blas_trans_type
Source§fn clone(&self) -> blas_trans_type
fn clone(&self) -> blas_trans_type
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 Debug for blas_trans_type
impl Debug for blas_trans_type
Source§impl Hash for blas_trans_type
impl Hash for blas_trans_type
Source§impl PartialEq for blas_trans_type
impl PartialEq for blas_trans_type
impl Copy for blas_trans_type
impl Eq for blas_trans_type
impl StructuralPartialEq for blas_trans_type
Auto Trait Implementations§
impl Freeze for blas_trans_type
impl RefUnwindSafe for blas_trans_type
impl Send for blas_trans_type
impl Sync for blas_trans_type
impl Unpin for blas_trans_type
impl UnwindSafe for blas_trans_type
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