#[repr(C)]pub struct hipMemcpy3DPeerParms {
pub srcArray: hipArray_t,
pub srcPos: hipPos,
pub srcPtr: hipPitchedPtr,
pub srcDevice: c_int,
pub dstArray: hipArray_t,
pub dstPos: hipPos,
pub dstPtr: hipPitchedPtr,
pub dstDevice: c_int,
pub extent: hipExtent,
}Fields§
§srcArray: hipArray_t< Source memory address
srcPos: hipPos< Source position offset
srcPtr: hipPitchedPtr< Pitched source memory address
srcDevice: c_int< Source device
dstArray: hipArray_t< Destination memory address
dstPos: hipPos< Destination position offset
dstPtr: hipPitchedPtr< Pitched destination memory address
dstDevice: c_int< Destination device
extent: hipExtent< Requested memory copy size
Trait Implementations§
Source§impl Clone for hipMemcpy3DPeerParms
impl Clone for hipMemcpy3DPeerParms
Source§fn clone(&self) -> hipMemcpy3DPeerParms
fn clone(&self) -> hipMemcpy3DPeerParms
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 hipMemcpy3DPeerParms
impl Debug for hipMemcpy3DPeerParms
impl Copy for hipMemcpy3DPeerParms
Auto Trait Implementations§
impl Freeze for hipMemcpy3DPeerParms
impl RefUnwindSafe for hipMemcpy3DPeerParms
impl !Send for hipMemcpy3DPeerParms
impl !Sync for hipMemcpy3DPeerParms
impl Unpin for hipMemcpy3DPeerParms
impl UnsafeUnpin for hipMemcpy3DPeerParms
impl UnwindSafe for hipMemcpy3DPeerParms
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