#[non_exhaustive]#[repr(u32)]pub enum Action {
Symbolic = 0,
Numeric = 1,
}Expand description
Selects whether an operation processes only indices or both data and indices.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for Action
impl Eq for Action
Source§impl From<Action> for cusparseAction_t
impl From<Action> for cusparseAction_t
Source§impl From<cusparseAction_t> for Action
impl From<cusparseAction_t> for Action
Source§fn from(value: cusparseAction_t) -> Self
fn from(value: cusparseAction_t) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnsafeUnpin for Action
impl UnwindSafe for Action
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