pub struct GeoHashNeighbors {
pub north: GeoHashBits,
pub east: GeoHashBits,
pub west: GeoHashBits,
pub south: GeoHashBits,
pub north_east: GeoHashBits,
pub south_east: GeoHashBits,
pub north_west: GeoHashBits,
pub south_west: GeoHashBits,
}Expand description
Domain operation (aligned with Kvrocks GeoHashNeighbors). Geohash 8 邻域结构(对标 Kvrocks GeoHashNeighbors)
Fields§
§north: GeoHashBits§east: GeoHashBits§west: GeoHashBits§south: GeoHashBits§north_east: GeoHashBits§south_east: GeoHashBits§north_west: GeoHashBits§south_west: GeoHashBitsTrait Implementations§
Source§impl Clone for GeoHashNeighbors
impl Clone for GeoHashNeighbors
Source§fn clone(&self) -> GeoHashNeighbors
fn clone(&self) -> GeoHashNeighbors
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GeoHashNeighbors
Source§impl Debug for GeoHashNeighbors
impl Debug for GeoHashNeighbors
Source§impl Default for GeoHashNeighbors
impl Default for GeoHashNeighbors
Source§fn default() -> GeoHashNeighbors
fn default() -> GeoHashNeighbors
Returns the “default value” for a type. Read more
Source§impl PartialEq for GeoHashNeighbors
impl PartialEq for GeoHashNeighbors
impl StructuralPartialEq for GeoHashNeighbors
Auto Trait Implementations§
impl Freeze for GeoHashNeighbors
impl RefUnwindSafe for GeoHashNeighbors
impl Send for GeoHashNeighbors
impl Sync for GeoHashNeighbors
impl Unpin for GeoHashNeighbors
impl UnsafeUnpin for GeoHashNeighbors
impl UnwindSafe for GeoHashNeighbors
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