[][src]Struct cuda_runtime_sys::cudaFuncAttributes

#[repr(C)]
pub struct cudaFuncAttributes {
    pub sharedSizeBytes: usize,
    pub constSizeBytes: usize,
    pub localSizeBytes: usize,
    pub maxThreadsPerBlock: c_int,
    pub numRegs: c_int,
    pub ptxVersion: c_int,
    pub binaryVersion: c_int,
    pub cacheModeCA: c_int,
    pub maxDynamicSharedSizeBytes: c_int,
    pub preferredShmemCarveout: c_int,
}

Fields

sharedSizeBytes: usizeconstSizeBytes: usizelocalSizeBytes: usizemaxThreadsPerBlock: c_intnumRegs: c_intptxVersion: c_intbinaryVersion: c_intcacheModeCA: c_intmaxDynamicSharedSizeBytes: c_intpreferredShmemCarveout: c_int

Trait Implementations

impl Clone for cudaFuncAttributes[src]

impl Copy for cudaFuncAttributes[src]

impl Debug for cudaFuncAttributes[src]

impl Default for cudaFuncAttributes[src]

impl Eq for cudaFuncAttributes[src]

impl Hash for cudaFuncAttributes[src]

impl Ord for cudaFuncAttributes[src]

impl PartialEq<cudaFuncAttributes> for cudaFuncAttributes[src]

impl PartialOrd<cudaFuncAttributes> for cudaFuncAttributes[src]

impl StructuralEq for cudaFuncAttributes[src]

impl StructuralPartialEq for cudaFuncAttributes[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.