#[repr(u32)]pub enum cusparseFillMode_t {
CUSPARSE_FILL_MODE_LOWER = 0,
CUSPARSE_FILL_MODE_UPPER = 1,
}Expand description
This type indicates if the lower or upper part of a matrix is stored in sparse storage.
Variants§
CUSPARSE_FILL_MODE_LOWER = 0
The lower triangular part is stored.
CUSPARSE_FILL_MODE_UPPER = 1
The upper triangular part is stored.
Trait Implementations§
Source§impl Clone for cusparseFillMode_t
impl Clone for cusparseFillMode_t
Source§fn clone(&self) -> cusparseFillMode_t
fn clone(&self) -> cusparseFillMode_t
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 cusparseFillMode_t
impl Debug for cusparseFillMode_t
Source§impl Hash for cusparseFillMode_t
impl Hash for cusparseFillMode_t
Source§impl Ord for cusparseFillMode_t
impl Ord for cusparseFillMode_t
Source§fn cmp(&self, other: &cusparseFillMode_t) -> Ordering
fn cmp(&self, other: &cusparseFillMode_t) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for cusparseFillMode_t
impl PartialEq for cusparseFillMode_t
Source§fn eq(&self, other: &cusparseFillMode_t) -> bool
fn eq(&self, other: &cusparseFillMode_t) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for cusparseFillMode_t
impl PartialOrd for cusparseFillMode_t
impl Copy for cusparseFillMode_t
impl Eq for cusparseFillMode_t
impl StructuralPartialEq for cusparseFillMode_t
Auto Trait Implementations§
impl Freeze for cusparseFillMode_t
impl RefUnwindSafe for cusparseFillMode_t
impl Send for cusparseFillMode_t
impl Sync for cusparseFillMode_t
impl Unpin for cusparseFillMode_t
impl UnsafeUnpin for cusparseFillMode_t
impl UnwindSafe for cusparseFillMode_t
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