#[repr(u32)]pub enum blas_field_type {
blas_complex = 241,
blas_real = 242,
blas_double_precision = 243,
blas_single_precision = 244,
}Expand description
Numerical field type; can be used with #BLAS_usgp to inquiry about a matrix numerical type (1 will be returned in case of success, 0 in case of failure).
Variants§
blas_complex = 241
< Will succeed if matrix is of ‘C’ or ‘Z’ type.
blas_real = 242
< Will succeed if matrix is of ‘S’ or ‘D’ type.
blas_double_precision = 243
< Will succeed if matrix is of ‘D’ or ‘Z’ type.
blas_single_precision = 244
< Will succeed if matrix is of ‘S’ or ‘C’ type.
Trait Implementations§
Source§impl Clone for blas_field_type
impl Clone for blas_field_type
Source§fn clone(&self) -> blas_field_type
fn clone(&self) -> blas_field_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_field_type
impl Debug for blas_field_type
Source§impl Hash for blas_field_type
impl Hash for blas_field_type
Source§impl PartialEq for blas_field_type
impl PartialEq for blas_field_type
impl Copy for blas_field_type
impl Eq for blas_field_type
impl StructuralPartialEq for blas_field_type
Auto Trait Implementations§
impl Freeze for blas_field_type
impl RefUnwindSafe for blas_field_type
impl Send for blas_field_type
impl Sync for blas_field_type
impl Unpin for blas_field_type
impl UnwindSafe for blas_field_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