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