#[repr(u32)]pub enum EigenMode {
NoVector = 0,
Vector = 1,
}Expand description
Selects whether to compute eigenvectors.
This corresponds to LAPACK N (eigenvalues only) and V (eigenvalues and
eigenvectors) arguments.
Variants§
Trait Implementations§
Source§impl From<EigenMode> for cusolverEigMode_t
impl From<EigenMode> for cusolverEigMode_t
Source§impl From<cusolverEigMode_t> for EigenMode
impl From<cusolverEigMode_t> for EigenMode
Source§fn from(value: cusolverEigMode_t) -> Self
fn from(value: cusolverEigMode_t) -> Self
Converts to this type from the input type.
Source§impl TryFromPrimitive for EigenMode
impl TryFromPrimitive for EigenMode
impl Copy for EigenMode
impl Eq for EigenMode
impl StructuralPartialEq for EigenMode
Auto Trait Implementations§
impl Freeze for EigenMode
impl RefUnwindSafe for EigenMode
impl Send for EigenMode
impl Sync for EigenMode
impl Unpin for EigenMode
impl UnsafeUnpin for EigenMode
impl UnwindSafe for EigenMode
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