#[repr(u32)]pub enum EigenRange {
All = 1_001,
Index = 1_002,
Value = 1_003,
}Variants§
Trait Implementations§
Source§impl Clone for EigenRange
impl Clone for EigenRange
Source§fn clone(&self) -> EigenRange
fn clone(&self) -> EigenRange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EigenRange
impl Debug for EigenRange
Source§impl Display for EigenRange
impl Display for EigenRange
Source§impl From<EigenRange> for cusolverEigRange_t
impl From<EigenRange> for cusolverEigRange_t
Source§fn from(value: EigenRange) -> Self
fn from(value: EigenRange) -> Self
Converts to this type from the input type.
Source§impl From<EigenRange> for u32
impl From<EigenRange> for u32
Source§fn from(enum_value: EigenRange) -> Self
fn from(enum_value: EigenRange) -> Self
Converts to this type from the input type.
Source§impl From<cusolverEigRange_t> for EigenRange
impl From<cusolverEigRange_t> for EigenRange
Source§fn from(value: cusolverEigRange_t) -> Self
fn from(value: cusolverEigRange_t) -> Self
Converts to this type from the input type.
Source§impl Hash for EigenRange
impl Hash for EigenRange
Source§impl PartialEq for EigenRange
impl PartialEq for EigenRange
Source§fn eq(&self, other: &EigenRange) -> bool
fn eq(&self, other: &EigenRange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<u32> for EigenRange
impl TryFrom<u32> for EigenRange
Source§type Error = TryFromPrimitiveError<EigenRange>
type Error = TryFromPrimitiveError<EigenRange>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for EigenRange
impl TryFromPrimitive for EigenRange
const NAME: &'static str = "EigenRange"
type Primitive = u32
type Error = TryFromPrimitiveError<EigenRange>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for EigenRange
impl Eq for EigenRange
impl StructuralPartialEq for EigenRange
Auto Trait Implementations§
impl Freeze for EigenRange
impl RefUnwindSafe for EigenRange
impl Send for EigenRange
impl Sync for EigenRange
impl Unpin for EigenRange
impl UnsafeUnpin for EigenRange
impl UnwindSafe for EigenRange
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