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