pub struct VectorRef<'a> { /* private fields */ }Expand description
Read and write views over a single column of a DataChunkHandle, plus the
ScalarArg/ScalarRet marshalling traits.
A read-only view of one column of a data chunk.
Built from &DataChunkHandle, so multiple VectorRefs over different (or
the same) columns may coexist freely — they only ever read.
Implementations§
Auto Trait Implementations§
impl<'a> !Send for VectorRef<'a>
impl<'a> !Sync for VectorRef<'a>
impl<'a> Freeze for VectorRef<'a>
impl<'a> RefUnwindSafe for VectorRef<'a>
impl<'a> Unpin for VectorRef<'a>
impl<'a> UnsafeUnpin for VectorRef<'a>
impl<'a> UnwindSafe for VectorRef<'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