#[non_exhaustive]#[repr(u32)]pub enum FillMode {
Lower = 0,
Upper = 1,
}Expand description
Selects whether the lower or upper part of a matrix is stored in sparse storage.
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 FillMode
impl Eq for FillMode
Source§impl From<FillMode> for cusparseFillMode_t
impl From<FillMode> for cusparseFillMode_t
Source§impl From<cusparseFillMode_t> for FillMode
impl From<cusparseFillMode_t> for FillMode
Source§fn from(value: cusparseFillMode_t) -> Self
fn from(value: cusparseFillMode_t) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for FillMode
Auto Trait Implementations§
impl Freeze for FillMode
impl RefUnwindSafe for FillMode
impl Send for FillMode
impl Sync for FillMode
impl Unpin for FillMode
impl UnsafeUnpin for FillMode
impl UnwindSafe for FillMode
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