pub struct VectorMut<'a> { /* private fields */ }Expand description
Read and write views over a single column of a DataChunkHandle, plus the
ScalarArg/ScalarRet marshalling traits.
An exclusive, writable view of one column of a data chunk.
Built from &mut DataChunkHandle, so the borrow checker guarantees no other
VectorRef/VectorMut over the same column coexists with it.
Implementations§
Auto Trait Implementations§
impl<'a> !Send for VectorMut<'a>
impl<'a> !Sync for VectorMut<'a>
impl<'a> !UnwindSafe for VectorMut<'a>
impl<'a> Freeze for VectorMut<'a>
impl<'a> RefUnwindSafe for VectorMut<'a>
impl<'a> Unpin for VectorMut<'a>
impl<'a> UnsafeUnpin for VectorMut<'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