#[repr(u32)]pub enum cusparseAction_t {
CUSPARSE_ACTION_SYMBOLIC = 0,
CUSPARSE_ACTION_NUMERIC = 1,
}Expand description
This type indicates whether the operation is performed only on indices or on data and indices.
Variants§
CUSPARSE_ACTION_SYMBOLIC = 0
the operation is performed only on indices.
CUSPARSE_ACTION_NUMERIC = 1
the operation is performed on data and indices.
Trait Implementations§
Source§impl Clone for cusparseAction_t
impl Clone for cusparseAction_t
Source§fn clone(&self) -> cusparseAction_t
fn clone(&self) -> cusparseAction_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 cusparseAction_t
impl Debug for cusparseAction_t
Source§impl Hash for cusparseAction_t
impl Hash for cusparseAction_t
Source§impl Ord for cusparseAction_t
impl Ord for cusparseAction_t
Source§fn cmp(&self, other: &cusparseAction_t) -> Ordering
fn cmp(&self, other: &cusparseAction_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 cusparseAction_t
impl PartialEq for cusparseAction_t
Source§fn eq(&self, other: &cusparseAction_t) -> bool
fn eq(&self, other: &cusparseAction_t) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for cusparseAction_t
impl PartialOrd for cusparseAction_t
impl Copy for cusparseAction_t
impl Eq for cusparseAction_t
impl StructuralPartialEq for cusparseAction_t
Auto Trait Implementations§
impl Freeze for cusparseAction_t
impl RefUnwindSafe for cusparseAction_t
impl Send for cusparseAction_t
impl Sync for cusparseAction_t
impl Unpin for cusparseAction_t
impl UnsafeUnpin for cusparseAction_t
impl UnwindSafe for cusparseAction_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