Enum redis::geo::RadiusOrder
source · [−]pub enum RadiusOrder {
Unsorted,
Asc,
Desc,
}
Expand description
Options to sort results from GEORADIUS and GEORADIUSBYMEMBER commands
Variants
Unsorted
Don’t sort the results
Asc
Sort returned items from the nearest to the farthest, relative to the center.
Desc
Sort returned items from the farthest to the nearest, relative to the center.
Trait Implementations
sourceimpl Default for RadiusOrder
impl Default for RadiusOrder
sourcefn default() -> RadiusOrder
fn default() -> RadiusOrder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for RadiusOrder
impl Send for RadiusOrder
impl Sync for RadiusOrder
impl Unpin for RadiusOrder
impl UnwindSafe for RadiusOrder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more