#[repr(u32)]pub enum blas_base_type {
blas_zero_base = 221,
blas_one_base = 222,
}Expand description
Index base (valid at matrix build/modify time).
Variants§
blas_zero_base = 221
< Zero based indices (default when matrix created using the C interface).
blas_one_base = 222
< Zero based indices (default when matrix created using the Fortran interface).
Trait Implementations§
Source§impl Clone for blas_base_type
impl Clone for blas_base_type
Source§fn clone(&self) -> blas_base_type
fn clone(&self) -> blas_base_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_base_type
impl Debug for blas_base_type
Source§impl Hash for blas_base_type
impl Hash for blas_base_type
Source§impl PartialEq for blas_base_type
impl PartialEq for blas_base_type
impl Copy for blas_base_type
impl Eq for blas_base_type
impl StructuralPartialEq for blas_base_type
Auto Trait Implementations§
impl Freeze for blas_base_type
impl RefUnwindSafe for blas_base_type
impl Send for blas_base_type
impl Sync for blas_base_type
impl Unpin for blas_base_type
impl UnwindSafe for blas_base_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