pub enum Skip {
Candidates,
Nothing,
}Expand description
Outcome of asking the frontier to skip what cannot beat a threshold.
Variants§
Candidates
Some unscored record may still beat the threshold; cursors have been
moved so that Frontier::min_id is the first such candidate.
Nothing
No remaining record can beat the threshold: the search is over.
Trait Implementations§
impl Copy for Skip
impl Eq for Skip
impl StructuralPartialEq for Skip
Auto Trait Implementations§
impl Freeze for Skip
impl RefUnwindSafe for Skip
impl Send for Skip
impl Sync for Skip
impl Unpin for Skip
impl UnsafeUnpin for Skip
impl UnwindSafe for Skip
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