pub enum ArrayType<'a> {
Contiguous(&'a dyn ArrayCompute),
View(&'a dyn ArrayCompute),
}Variants§
Contiguous(&'a dyn ArrayCompute)
View(&'a dyn ArrayCompute)
Auto Trait Implementations§
impl<'a> Freeze for ArrayType<'a>
impl<'a> !RefUnwindSafe for ArrayType<'a>
impl<'a> !Send for ArrayType<'a>
impl<'a> !Sync for ArrayType<'a>
impl<'a> Unpin for ArrayType<'a>
impl<'a> !UnwindSafe for ArrayType<'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