#[repr(C)]pub struct CUDA_MEMCPY_NODE_PARAMS_st {
pub flags: c_int,
pub reserved: c_int,
pub copyCtx: CUcontext,
pub copyParams: CUDA_MEMCPY3D,
}
Expand description
Memcpy node parameters
Fields§
§flags: c_int
< Must be zero
reserved: c_int
< Must be zero
copyCtx: CUcontext
< Context on which to run the node
copyParams: CUDA_MEMCPY3D
< Parameters for the memory copy
Trait Implementations§
Source§impl Clone for CUDA_MEMCPY_NODE_PARAMS_st
impl Clone for CUDA_MEMCPY_NODE_PARAMS_st
Source§fn clone(&self) -> CUDA_MEMCPY_NODE_PARAMS_st
fn clone(&self) -> CUDA_MEMCPY_NODE_PARAMS_st
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 CUDA_MEMCPY_NODE_PARAMS_st
impl Debug for CUDA_MEMCPY_NODE_PARAMS_st
impl Copy for CUDA_MEMCPY_NODE_PARAMS_st
Auto Trait Implementations§
impl Freeze for CUDA_MEMCPY_NODE_PARAMS_st
impl RefUnwindSafe for CUDA_MEMCPY_NODE_PARAMS_st
impl !Send for CUDA_MEMCPY_NODE_PARAMS_st
impl !Sync for CUDA_MEMCPY_NODE_PARAMS_st
impl Unpin for CUDA_MEMCPY_NODE_PARAMS_st
impl UnwindSafe for CUDA_MEMCPY_NODE_PARAMS_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