#[repr(u32)]pub enum cufftType_t {
CUFFT_R2C = 42,
CUFFT_C2R = 44,
CUFFT_C2C = 41,
CUFFT_D2Z = 106,
CUFFT_Z2D = 108,
CUFFT_Z2Z = 105,
}Expand description
The cuFFT library supports complex- and real-data transforms. The cufftType data type is an enumeration of the types of transform data supported by cuFFT.
Variants§
CUFFT_R2C = 42
Real to complex (interleaved).
CUFFT_C2R = 44
Complex (interleaved) to real.
CUFFT_C2C = 41
Complex to complex (interleaved).
CUFFT_D2Z = 106
Double to double-complex (interleaved).
CUFFT_Z2D = 108
Double-complex (interleaved) to double.
CUFFT_Z2Z = 105
Double-complex to double-complex (interleaved).
Trait Implementations§
Source§impl Clone for cufftType_t
impl Clone for cufftType_t
Source§fn clone(&self) -> cufftType_t
fn clone(&self) -> cufftType_t
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 cufftType_t
impl Debug for cufftType_t
Source§impl From<cufftType_t> for u32
impl From<cufftType_t> for u32
Source§fn from(enum_value: cufftType_t) -> Self
fn from(enum_value: cufftType_t) -> Self
Converts to this type from the input type.
Source§impl Hash for cufftType_t
impl Hash for cufftType_t
Source§impl Ord for cufftType_t
impl Ord for cufftType_t
Source§fn cmp(&self, other: &cufftType_t) -> Ordering
fn cmp(&self, other: &cufftType_t) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for cufftType_t
impl PartialEq for cufftType_t
Source§fn eq(&self, other: &cufftType_t) -> bool
fn eq(&self, other: &cufftType_t) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for cufftType_t
impl PartialOrd for cufftType_t
Source§impl TryFrom<u32> for cufftType_t
impl TryFrom<u32> for cufftType_t
Source§type Error = TryFromPrimitiveError<cufftType_t>
type Error = TryFromPrimitiveError<cufftType_t>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for cufftType_t
impl TryFromPrimitive for cufftType_t
const NAME: &'static str = "cufftType_t"
type Primitive = u32
type Error = TryFromPrimitiveError<cufftType_t>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for cufftType_t
impl Eq for cufftType_t
impl StructuralPartialEq for cufftType_t
Auto Trait Implementations§
impl Freeze for cufftType_t
impl RefUnwindSafe for cufftType_t
impl Send for cufftType_t
impl Sync for cufftType_t
impl Unpin for cufftType_t
impl UnsafeUnpin for cufftType_t
impl UnwindSafe for cufftType_t
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