Enum tantivy::SkipResult[][src]

pub enum SkipResult {
    Reached,
    OverStep,
    End,
}

Expresses the outcome of a call to DocSet's .skip_next(...).

Variants

target was in the docset

target was not in the docset, skipping stopped as a greater element was found

the docset was entirely consumed without finding the target, nor any element greater than the target.

Trait Implementations

impl PartialEq for SkipResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SkipResult
[src]

impl Debug for SkipResult
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SkipResult

impl Sync for SkipResult