#[repr(C)]pub struct cudaMemcpy3DParms {
pub srcArray: *mut cudaArray,
pub srcPos: cudaPos,
pub srcPtr: cudaPitchedPtr,
pub dstArray: *mut cudaArray,
pub dstPos: cudaPos,
pub dstPtr: cudaPitchedPtr,
pub extent: cudaExtent,
pub kind: cudaMemcpyKind,
}
Expand description
CUDA 3D memory copying parameters
Fields§
§srcArray: *mut cudaArray
< Source memory address
srcPos: cudaPos
< Source position offset
srcPtr: cudaPitchedPtr
< Pitched source memory address
dstArray: *mut cudaArray
< Destination memory address
dstPos: cudaPos
< Destination position offset
dstPtr: cudaPitchedPtr
< Pitched destination memory address
extent: cudaExtent
< Requested memory copy size
kind: cudaMemcpyKind
< Type of transfer
Trait Implementations§
Source§impl Clone for cudaMemcpy3DParms
impl Clone for cudaMemcpy3DParms
Source§fn clone(&self) -> cudaMemcpy3DParms
fn clone(&self) -> cudaMemcpy3DParms
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for cudaMemcpy3DParms
impl Debug for cudaMemcpy3DParms
impl Copy for cudaMemcpy3DParms
Auto Trait Implementations§
impl Freeze for cudaMemcpy3DParms
impl RefUnwindSafe for cudaMemcpy3DParms
impl !Send for cudaMemcpy3DParms
impl !Sync for cudaMemcpy3DParms
impl Unpin for cudaMemcpy3DParms
impl UnwindSafe for cudaMemcpy3DParms
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