#[non_exhaustive]#[repr(u32)]pub enum FillMode {
Lower = 0,
Upper = 1,
Full = 2,
}Expand description
Selects which filled part of a dense matrix is used by the operation.
This corresponds to BLAS L/l (lower) and U/u (upper) arguments.
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.
Lower = 0
The lower part of the matrix is filled.
Upper = 1
The upper part of the matrix is filled.
Full = 2
The full matrix is filled.
Trait Implementations§
impl Copy for FillMode
impl Eq for FillMode
Source§impl From<FillMode> for cublasFillMode_t
impl From<FillMode> for cublasFillMode_t
Source§impl From<cublasFillMode_t> for FillMode
impl From<cublasFillMode_t> for FillMode
Source§fn from(value: cublasFillMode_t) -> Self
fn from(value: cublasFillMode_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