Enum tantivy::postings::SkipResult
[−]
[src]
pub enum SkipResult {
Reached,
OverStep,
End,
}Expresses the outcome of a call to DocSet's .skip_next(...).
Variants
Reachedtarget was in the docset
OverSteptarget was not in the docset, skipping stopped as a greater element was found
Endthe docset was entirely consumed without finding the target, nor any element greater than the target.
Trait Implementations
impl PartialEq for SkipResult[src]
fn eq(&self, __arg_0: &SkipResult) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.