pub struct BitSetDocSet { /* private fields */ }Expand description
A BitSetDocSet makes it possible to iterate through a bitset as if it was a DocSet.
§Implementation detail
Skipping is relatively fast here as we can directly point to the right tiny bitset bucket.
TODO: Consider implementing a BitTreeSet in order to advance faster
when the bitset is sparse
Trait Implementations§
Source§impl DocSet for BitSetDocSet
impl DocSet for BitSetDocSet
Source§fn fill_buffer(&mut self, buffer: &mut [DocId; 64]) -> usize
fn fill_buffer(&mut self, buffer: &mut [DocId; 64]) -> usize
Fills a given mutable buffer with the next doc ids from the
DocSet Read moreSource§fn count(&mut self, alive_bitset: &AliveBitSet) -> u32
fn count(&mut self, alive_bitset: &AliveBitSet) -> u32
Returns the number documents matching.
Calling this method consumes the
DocSet.Source§fn count_including_deleted(&mut self) -> u32
fn count_including_deleted(&mut self) -> u32
Returns the count of documents, deleted or not.
Calling this method consumes the
DocSet. Read moreSource§impl From<BitSet> for BitSetDocSet
impl From<BitSet> for BitSetDocSet
Source§fn from(docs: BitSet) -> BitSetDocSet
fn from(docs: BitSet) -> BitSetDocSet
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BitSetDocSet
impl RefUnwindSafe for BitSetDocSet
impl Send for BitSetDocSet
impl Sync for BitSetDocSet
impl Unpin for BitSetDocSet
impl UnsafeUnpin for BitSetDocSet
impl UnwindSafe for BitSetDocSet
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
impl<T> Fruit for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more