Struct cuda_sys::cuda::CUDA_MEMCPY2D_st[][src]

#[repr(C)]
pub struct CUDA_MEMCPY2D_st { pub srcXInBytes: usize, pub srcY: usize, pub srcMemoryType: CUmemorytype, pub srcHost: *const c_void, pub srcDevice: CUdeviceptr, pub srcArray: CUarray, pub srcPitch: usize, pub dstXInBytes: usize, pub dstY: usize, pub dstMemoryType: CUmemorytype, pub dstHost: *mut c_void, pub dstDevice: CUdeviceptr, pub dstArray: CUarray, pub dstPitch: usize, pub WidthInBytes: usize, pub Height: usize, }

Fields

Trait Implementations

impl Debug for CUDA_MEMCPY2D_st
[src]

Formats the value using the given formatter. Read more

impl Copy for CUDA_MEMCPY2D_st
[src]

impl Clone for CUDA_MEMCPY2D_st
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations