pub enum Missing {
First,
Last,
Value(Value),
}Expand description
Where to place documents missing the sorted field (a field-sort missing).
Variants§
First
Missing values sort first (_first).
Last
Missing values sort last (_last).
Value(Value)
Missing values take this substitute value.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Missing
impl RefUnwindSafe for Missing
impl Send for Missing
impl Sync for Missing
impl Unpin for Missing
impl UnsafeUnpin for Missing
impl UnwindSafe for Missing
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