pub struct ValueRange<'a>(/* private fields */);
Expand description
A range of Values for range-based queries and indexes.
This struct wraps a standard Rust Range of Value types, allowing for range-based lookups and queries in indexed graphs.
The lifetime parameter corresponds to the lifetime of any string data in the range.
Trait Implementations§
Source§impl<'a> Clone for ValueRange<'a>
impl<'a> Clone for ValueRange<'a>
Source§fn clone(&self) -> ValueRange<'a>
fn clone(&self) -> ValueRange<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for ValueRange<'a>
impl<'a> RefUnwindSafe for ValueRange<'a>
impl<'a> Send for ValueRange<'a>
impl<'a> Sync for ValueRange<'a>
impl<'a> Unpin for ValueRange<'a>
impl<'a> UnwindSafe for ValueRange<'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