#[repr(C)]pub struct CUDA_MEMCPY3D_st {Show 25 fields
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§
§srcXInBytes: usize§srcY: usize§srcZ: usize§srcLOD: usize§srcMemoryType: CUmemorytype§srcHost: *const c_void§srcDevice: CUdeviceptr§srcArray: CUarray§reserved0: *mut c_void§srcPitch: usize§srcHeight: usize§dstXInBytes: usize§dstY: usize§dstZ: usize§dstLOD: usize§dstMemoryType: CUmemorytype§dstHost: *mut c_void§dstDevice: CUdeviceptr§dstArray: CUarray§reserved1: *mut c_void§dstPitch: usize§dstHeight: usize§WidthInBytes: usize§Height: usize§Depth: usizeTrait Implementations§
Source§impl Clone for CUDA_MEMCPY3D_st
impl Clone for CUDA_MEMCPY3D_st
Source§impl Debug for CUDA_MEMCPY3D_st
impl Debug for CUDA_MEMCPY3D_st
impl Copy for CUDA_MEMCPY3D_st
Auto Trait Implementations§
impl Freeze for CUDA_MEMCPY3D_st
impl RefUnwindSafe for CUDA_MEMCPY3D_st
impl !Send for CUDA_MEMCPY3D_st
impl !Sync for CUDA_MEMCPY3D_st
impl Unpin for CUDA_MEMCPY3D_st
impl UnwindSafe for CUDA_MEMCPY3D_st
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more