pub struct GeospatialStats {
pub total_keys: usize,
pub total_locations: usize,
pub geoadd_count: usize,
pub geodist_count: usize,
pub georadius_count: usize,
pub geopos_count: usize,
pub geohash_count: usize,
}Expand description
Geospatial statistics
Fields§
§total_keys: usize§total_locations: usize§geoadd_count: usize§geodist_count: usize§georadius_count: usize§geopos_count: usize§geohash_count: usizeTrait Implementations§
Source§impl Clone for GeospatialStats
impl Clone for GeospatialStats
Source§fn clone(&self) -> GeospatialStats
fn clone(&self) -> GeospatialStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GeospatialStats
impl Debug for GeospatialStats
Source§impl Default for GeospatialStats
impl Default for GeospatialStats
Source§fn default() -> GeospatialStats
fn default() -> GeospatialStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeospatialStats
impl<'de> Deserialize<'de> for GeospatialStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GeospatialStats
impl RefUnwindSafe for GeospatialStats
impl Send for GeospatialStats
impl Sync for GeospatialStats
impl Unpin for GeospatialStats
impl UnsafeUnpin for GeospatialStats
impl UnwindSafe for GeospatialStats
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