pub struct Neighborhood {
pub neighborhood: String,
pub reserve_size_within_radius: i64,
pub proximity: u8,
}Expand description
GET /status/neighborhoods row — per-neighbourhood reserve stats.
Fields§
§neighborhood: StringBinary prefix string (e.g. "01101").
reserve_size_within_radius: i64Reserve size within the neighbourhood radius.
proximity: u8Proximity order.
Trait Implementations§
Source§impl Clone for Neighborhood
impl Clone for Neighborhood
Source§fn clone(&self) -> Neighborhood
fn clone(&self) -> Neighborhood
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 moreSource§impl Debug for Neighborhood
impl Debug for Neighborhood
Source§impl<'de> Deserialize<'de> for Neighborhood
impl<'de> Deserialize<'de> for Neighborhood
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
Source§impl PartialEq for Neighborhood
impl PartialEq for Neighborhood
Source§fn eq(&self, other: &Neighborhood) -> bool
fn eq(&self, other: &Neighborhood) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Neighborhood
impl StructuralPartialEq for Neighborhood
Auto Trait Implementations§
impl Freeze for Neighborhood
impl RefUnwindSafe for Neighborhood
impl Send for Neighborhood
impl Sync for Neighborhood
impl Unpin for Neighborhood
impl UnsafeUnpin for Neighborhood
impl UnwindSafe for Neighborhood
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