pub enum ArrayViewMut<'a> {
Generic(&'a mut Arc<Vec<ValueWord>>),
Int(&'a mut Arc<TypedBuffer<i64>>),
Float(&'a mut Arc<AlignedTypedBuffer>),
Bool(&'a mut Arc<TypedBuffer<u8>>),
}Expand description
Mutable view over all array variants. Uses Arc::make_mut for COW semantics.
Variants§
Generic(&'a mut Arc<Vec<ValueWord>>)
Int(&'a mut Arc<TypedBuffer<i64>>)
Float(&'a mut Arc<AlignedTypedBuffer>)
Bool(&'a mut Arc<TypedBuffer<u8>>)
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ArrayViewMut<'a>
impl<'a> RefUnwindSafe for ArrayViewMut<'a>
impl<'a> Send for ArrayViewMut<'a>
impl<'a> Sync for ArrayViewMut<'a>
impl<'a> Unpin for ArrayViewMut<'a>
impl<'a> UnsafeUnpin for ArrayViewMut<'a>
impl<'a> !UnwindSafe for ArrayViewMut<'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