[][src]Struct cuda_runtime_sys::cudaMemsetParams

#[repr(C)]
pub struct cudaMemsetParams {
    pub dst: *mut c_void,
    pub pitch: usize,
    pub value: c_uint,
    pub elementSize: c_uint,
    pub width: usize,
    pub height: usize,
}

Fields

dst: *mut c_voidpitch: usizevalue: c_uintelementSize: c_uintwidth: usizeheight: usize

Trait Implementations

impl Clone for cudaMemsetParams[src]

impl Copy for cudaMemsetParams[src]

impl Debug for cudaMemsetParams[src]

impl Default for cudaMemsetParams[src]

impl Eq for cudaMemsetParams[src]

impl Hash for cudaMemsetParams[src]

impl Ord for cudaMemsetParams[src]

impl PartialEq<cudaMemsetParams> for cudaMemsetParams[src]

impl PartialOrd<cudaMemsetParams> for cudaMemsetParams[src]

impl StructuralEq for cudaMemsetParams[src]

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