pub struct ColumnHandle<'a> { /* private fields */ }Expand description
A pre-resolved column handle for efficient repeated node lookups.
Created by ColumnStore::column. Resolves the field name hash once so
that callers can look up many node IDs without re-hashing the field string
on every call — useful when iterating large label scans under a filter.
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ColumnHandle<'a>
impl<'a> RefUnwindSafe for ColumnHandle<'a>
impl<'a> Send for ColumnHandle<'a>
impl<'a> Sync for ColumnHandle<'a>
impl<'a> Unpin for ColumnHandle<'a>
impl<'a> UnsafeUnpin for ColumnHandle<'a>
impl<'a> UnwindSafe for ColumnHandle<'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