#[non_exhaustive]#[repr(u32)]pub enum Function {
Getrf = 0,
Potrf = 1,
SyevBatched = 2,
}Expand description
Indicates which operation is configured by
Params::set_adv_options.
Function::Getrf corresponds to the getrf operation.
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 Function
impl Eq for Function
Source§impl From<Function> for cusolverDnFunction_t
impl From<Function> for cusolverDnFunction_t
Source§impl From<cusolverDnFunction_t> for Function
impl From<cusolverDnFunction_t> for Function
Source§fn from(value: cusolverDnFunction_t) -> Self
fn from(value: cusolverDnFunction_t) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Function
Auto Trait Implementations§
impl Freeze for Function
impl RefUnwindSafe for Function
impl Send for Function
impl Sync for Function
impl Unpin for Function
impl UnsafeUnpin for Function
impl UnwindSafe for Function
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