#[repr(C)]pub struct cudaMemcpy3DParms {
pub srcArray: cudaArray_t,
pub srcPos: cudaPos,
pub srcPtr: cudaPitchedPtr,
pub dstArray: cudaArray_t,
pub dstPos: cudaPos,
pub dstPtr: cudaPitchedPtr,
pub extent: cudaExtent,
pub kind: cudaMemcpyKind,
}
Fields§
§srcArray: cudaArray_t
§srcPos: cudaPos
§srcPtr: cudaPitchedPtr
§dstArray: cudaArray_t
§dstPos: cudaPos
§dstPtr: cudaPitchedPtr
§extent: cudaExtent
§kind: cudaMemcpyKind
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
Source§impl Default for cudaMemcpy3DParms
impl Default for cudaMemcpy3DParms
Source§impl Hash for cudaMemcpy3DParms
impl Hash for cudaMemcpy3DParms
Source§impl Ord for cudaMemcpy3DParms
impl Ord for cudaMemcpy3DParms
Source§fn cmp(&self, other: &cudaMemcpy3DParms) -> Ordering
fn cmp(&self, other: &cudaMemcpy3DParms) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for cudaMemcpy3DParms
impl PartialEq for cudaMemcpy3DParms
Source§impl PartialOrd for cudaMemcpy3DParms
impl PartialOrd for cudaMemcpy3DParms
impl Copy for cudaMemcpy3DParms
impl Eq for cudaMemcpy3DParms
impl StructuralPartialEq 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