Struct summa_core::components::queries::ExistsQuery
source · pub struct ExistsQuery { /* private fields */ }Implementations§
Trait Implementations§
source§impl Clone for ExistsQuery
impl Clone for ExistsQuery
source§fn clone(&self) -> ExistsQuery
fn clone(&self) -> ExistsQuery
Returns a copy 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 moresource§impl Debug for ExistsQuery
impl Debug for ExistsQuery
source§impl Query for ExistsQuery
impl Query for ExistsQuery
source§fn weight(&self, _: EnableScoring<'_>) -> Result<Box<dyn Weight>>
fn weight(&self, _: EnableScoring<'_>) -> Result<Box<dyn Weight>>
Create the weight associated with a query. Read more
source§fn weight_async<'life0, 'life1, 'async_trait>(
&'life0 self,
enable_scoring: EnableScoring<'life1>
) -> Pin<Box<dyn Future<Output = Result<Box<dyn Weight>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn weight_async<'life0, 'life1, 'async_trait>(
&'life0 self,
enable_scoring: EnableScoring<'life1>
) -> Pin<Box<dyn Future<Output = Result<Box<dyn Weight>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Create the weight associated with a query asynchronously. Read more
source§fn explain(
&self,
searcher: &Searcher,
doc_address: DocAddress
) -> Result<Explanation, TantivyError>
fn explain( &self, searcher: &Searcher, doc_address: DocAddress ) -> Result<Explanation, TantivyError>
Returns an
Explanation for the score of the document.source§fn count(&self, searcher: &Searcher) -> Result<usize, TantivyError>
fn count(&self, searcher: &Searcher) -> Result<usize, TantivyError>
Returns the number of documents matching the query.
Auto Trait Implementations§
impl RefUnwindSafe for ExistsQuery
impl Send for ExistsQuery
impl Sync for ExistsQuery
impl Unpin for ExistsQuery
impl UnwindSafe for ExistsQuery
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>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<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>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> 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)
Convert
&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)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.