pub struct AllQuery;Expand description
A query that matches everything
Trait Implementations§
Source§impl<T: TreeTypes> Query<T> for AllQuery
impl<T: TreeTypes> Query<T> for AllQuery
Source§fn containing(&self, _offset: u64, _index: &LeafIndex<T>, _res: &mut [bool])
fn containing(&self, _offset: u64, _index: &LeafIndex<T>, _res: &mut [bool])
a bitvec with
x.data.count() elements, where each value is a bool indicating if the query does matchSource§fn intersecting(&self, _offset: u64, _index: &BranchIndex<T>, _res: &mut [bool])
fn intersecting(&self, _offset: u64, _index: &BranchIndex<T>, _res: &mut [bool])
a bitvec with
x.data.count() elements, where each value is a bool indicating if the query can matchAuto Trait Implementations§
impl Freeze for AllQuery
impl RefUnwindSafe for AllQuery
impl Send for AllQuery
impl Sync for AllQuery
impl Unpin for AllQuery
impl UnwindSafe for AllQuery
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