[][src]Enum accel::memory::NumChannels

#[repr(u32)]
pub enum NumChannels {
    One,
    Two,
    Four,
}

This specifies the number of packed elements per "CUDA array element".

Variants

One

Single element in each "CUDA Array element"

Two

Two scalars in each CUDA Array element

Four

Four scalars in each CUDA Array element

Trait Implementations

impl Clone for NumChannels[src]

impl Copy for NumChannels[src]

impl Debug for NumChannels[src]

impl Default for NumChannels[src]

impl FromPrimitive for NumChannels[src]

impl PartialEq<NumChannels> for NumChannels[src]

impl PartialOrd<NumChannels> for NumChannels[src]

impl StructuralPartialEq for NumChannels[src]

impl ToPrimitive for NumChannels[src]

Auto Trait Implementations

impl RefUnwindSafe for NumChannels

impl Send for NumChannels

impl Sync for NumChannels

impl Unpin for NumChannels

impl UnwindSafe for NumChannels

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.