Struct cuda_sys::cuda::CUDA_MEMCPY3D_st[][src]

#[repr(C)]
pub struct CUDA_MEMCPY3D_st { pub srcXInBytes: usize, pub srcY: usize, pub srcZ: usize, pub srcLOD: usize, pub srcMemoryType: CUmemorytype, pub srcHost: *const c_void, pub srcDevice: CUdeviceptr, pub srcArray: CUarray, pub reserved0: *mut c_void, pub srcPitch: usize, pub srcHeight: usize, pub dstXInBytes: usize, pub dstY: usize, pub dstZ: usize, pub dstLOD: usize, pub dstMemoryType: CUmemorytype, pub dstHost: *mut c_void, pub dstDevice: CUdeviceptr, pub dstArray: CUarray, pub reserved1: *mut c_void, pub dstPitch: usize, pub dstHeight: usize, pub WidthInBytes: usize, pub Height: usize, pub Depth: usize, }

Fields

Trait Implementations

impl Debug for CUDA_MEMCPY3D_st
[src]

Formats the value using the given formatter. Read more

impl Copy for CUDA_MEMCPY3D_st
[src]

impl Clone for CUDA_MEMCPY3D_st
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations