[][src]Struct cuda_driver_sys::CUdevprop_st

#[repr(C)]
pub struct CUdevprop_st {
    pub maxThreadsPerBlock: c_int,
    pub maxThreadsDim: [c_int; 3],
    pub maxGridSize: [c_int; 3],
    pub sharedMemPerBlock: c_int,
    pub totalConstantMemory: c_int,
    pub SIMDWidth: c_int,
    pub memPitch: c_int,
    pub regsPerBlock: c_int,
    pub clockRate: c_int,
    pub textureAlign: c_int,
}

Fields

maxThreadsPerBlock: c_intmaxThreadsDim: [c_int; 3]maxGridSize: [c_int; 3]sharedMemPerBlock: c_inttotalConstantMemory: c_intSIMDWidth: c_intmemPitch: c_intregsPerBlock: c_intclockRate: c_inttextureAlign: c_int

Trait Implementations

impl Clone for CUdevprop_st[src]

impl Copy for CUdevprop_st[src]

impl Debug for CUdevprop_st[src]

impl Default for CUdevprop_st[src]

impl Eq for CUdevprop_st[src]

impl Hash for CUdevprop_st[src]

impl Ord for CUdevprop_st[src]

impl PartialEq<CUdevprop_st> for CUdevprop_st[src]

impl PartialOrd<CUdevprop_st> for CUdevprop_st[src]

impl StructuralEq for CUdevprop_st[src]

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