#[repr(u32)]pub enum StorevMode {
Columnwise = 0,
Rowwise = 1,
}Expand description
Specifies how the vectors which define the elementary reflectors are stored.
Variants§
Trait Implementations§
Source§impl Clone for StorevMode
impl Clone for StorevMode
Source§fn clone(&self) -> StorevMode
fn clone(&self) -> StorevMode
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 StorevMode
impl Debug for StorevMode
Source§impl Display for StorevMode
impl Display for StorevMode
Source§impl From<StorevMode> for cusolverStorevMode_t
impl From<StorevMode> for cusolverStorevMode_t
Source§fn from(value: StorevMode) -> Self
fn from(value: StorevMode) -> Self
Converts to this type from the input type.
Source§impl From<StorevMode> for u32
impl From<StorevMode> for u32
Source§fn from(enum_value: StorevMode) -> Self
fn from(enum_value: StorevMode) -> Self
Converts to this type from the input type.
Source§impl From<cusolverStorevMode_t> for StorevMode
impl From<cusolverStorevMode_t> for StorevMode
Source§fn from(value: cusolverStorevMode_t) -> Self
fn from(value: cusolverStorevMode_t) -> Self
Converts to this type from the input type.
Source§impl Hash for StorevMode
impl Hash for StorevMode
Source§impl PartialEq for StorevMode
impl PartialEq for StorevMode
Source§fn eq(&self, other: &StorevMode) -> bool
fn eq(&self, other: &StorevMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<u32> for StorevMode
impl TryFrom<u32> for StorevMode
Source§type Error = TryFromPrimitiveError<StorevMode>
type Error = TryFromPrimitiveError<StorevMode>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for StorevMode
impl TryFromPrimitive for StorevMode
const NAME: &'static str = "StorevMode"
type Primitive = u32
type Error = TryFromPrimitiveError<StorevMode>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for StorevMode
impl Eq for StorevMode
impl StructuralPartialEq for StorevMode
Auto Trait Implementations§
impl Freeze for StorevMode
impl RefUnwindSafe for StorevMode
impl Send for StorevMode
impl Sync for StorevMode
impl Unpin for StorevMode
impl UnsafeUnpin for StorevMode
impl UnwindSafe for StorevMode
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