pub struct RegistrationCounts {
pub alive: usize,
pub draining: usize,
pub permanent: usize,
pub total: usize,
}Expand description
Registration counts by state.
Fields§
§alive: usize§draining: usize§permanent: usize§total: usizeTrait Implementations§
Source§impl Clone for RegistrationCounts
impl Clone for RegistrationCounts
Source§fn clone(&self) -> RegistrationCounts
fn clone(&self) -> RegistrationCounts
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 ComposeSchema for RegistrationCounts
impl ComposeSchema for RegistrationCounts
Source§impl Debug for RegistrationCounts
impl Debug for RegistrationCounts
Source§impl<'de> Deserialize<'de> for RegistrationCounts
impl<'de> Deserialize<'de> for RegistrationCounts
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 Serialize for RegistrationCounts
impl Serialize for RegistrationCounts
Auto Trait Implementations§
impl Freeze for RegistrationCounts
impl RefUnwindSafe for RegistrationCounts
impl Send for RegistrationCounts
impl Sync for RegistrationCounts
impl Unpin for RegistrationCounts
impl UnsafeUnpin for RegistrationCounts
impl UnwindSafe for RegistrationCounts
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