pub enum BackendArray {
OpenCl(ClBackendArray),
Cuda(CudaBackendArray),
}
Expand description
An enumeration of backend array.
This enumeration contains the reference to the area of the device memory for computing platform (OpenCL or CUDA).
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BackendArray
impl RefUnwindSafe for BackendArray
impl Send for BackendArray
impl Sync for BackendArray
impl Unpin for BackendArray
impl UnwindSafe for BackendArray
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