pub enum DenseView<'a> {
Res(&'a CudaSlice<u8>),
Tmp(CudaSlice<u8>),
}Expand description
A borrowed resident slab or a staged transient copy — see DenseBf16::staged.
Variants§
Auto Trait Implementations§
impl<'a> Freeze for DenseView<'a>
impl<'a> RefUnwindSafe for DenseView<'a>
impl<'a> Send for DenseView<'a>
impl<'a> Sync for DenseView<'a>
impl<'a> Unpin for DenseView<'a>
impl<'a> UnsafeUnpin for DenseView<'a>
impl<'a> UnwindSafe for DenseView<'a>
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