pub struct IndexRangeCursor { /* private fields */ }Implementations§
Source§impl IndexRangeCursor
impl IndexRangeCursor
Sourcepub fn new(
txn: Txn<'_>,
label: &str,
prop: &str,
lo: Option<(&PropertyValue, bool)>,
hi: Option<(&PropertyValue, bool)>,
) -> Result<Option<Self>, GraphError>
pub fn new( txn: Txn<'_>, label: &str, prop: &str, lo: Option<(&PropertyValue, bool)>, hi: Option<(&PropertyValue, bool)>, ) -> Result<Option<Self>, GraphError>
None when the label/prop was never interned (nothing indexed).
pub fn next_chunk( &mut self, txn: Txn<'_>, chunk_size: usize, ) -> Result<Vec<NodeId>, GraphError>
Auto Trait Implementations§
impl Freeze for IndexRangeCursor
impl RefUnwindSafe for IndexRangeCursor
impl Send for IndexRangeCursor
impl Sync for IndexRangeCursor
impl Unpin for IndexRangeCursor
impl UnsafeUnpin for IndexRangeCursor
impl UnwindSafe for IndexRangeCursor
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