[][src]Enum cuda_runtime_sys::cudaDataType_t

#[repr(u32)]
pub enum cudaDataType_t {
    CUDA_R_16F,
    CUDA_C_16F,
    CUDA_R_32F,
    CUDA_C_32F,
    CUDA_R_64F,
    CUDA_C_64F,
    CUDA_R_8I,
    CUDA_C_8I,
    CUDA_R_8U,
    CUDA_C_8U,
    CUDA_R_32I,
    CUDA_C_32I,
    CUDA_R_32U,
    CUDA_C_32U,
}

Variants

CUDA_R_16F
CUDA_C_16F
CUDA_R_32F
CUDA_C_32F
CUDA_R_64F
CUDA_C_64F
CUDA_R_8I
CUDA_C_8I
CUDA_R_8U
CUDA_C_8U
CUDA_R_32I
CUDA_C_32I
CUDA_R_32U
CUDA_C_32U

Trait Implementations

impl Clone for cudaDataType_t[src]

impl Copy for cudaDataType_t[src]

impl Debug for cudaDataType_t[src]

impl Eq for cudaDataType_t[src]

impl Hash for cudaDataType_t[src]

impl Ord for cudaDataType_t[src]

impl PartialEq<cudaDataType_t> for cudaDataType_t[src]

impl PartialOrd<cudaDataType_t> for cudaDataType_t[src]

impl StructuralEq for cudaDataType_t[src]

impl StructuralPartialEq for cudaDataType_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.