#[repr(transparent)]pub struct CUarray(pub *mut c_void);Expand description
Opaque handle to a CUDA array (1-D, 2-D, or 3-D texture memory).
Allocated by cuArrayCreate_v2 / cuArray3DCreate_v2 and freed by
cuArrayDestroy. Arrays can be bound to texture objects via
CUDA_RESOURCE_DESC.
Tuple Fields§
§0: *mut c_voidImplementations§
Trait Implementations§
impl Copy for CUarray
impl Eq for CUarray
impl Send for CUarray
impl StructuralPartialEq for CUarray
impl Sync for CUarray
Auto Trait Implementations§
impl Freeze for CUarray
impl RefUnwindSafe for CUarray
impl Unpin for CUarray
impl UnsafeUnpin for CUarray
impl UnwindSafe for CUarray
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