pub struct RegistryStats {
pub total_services: usize,
pub local_services: usize,
pub discovered_services: usize,
pub expired_services: usize,
}Expand description
Registry statistics
Fields§
§total_services: usizeTotal number of services
local_services: usizeNumber of local services
discovered_services: usizeNumber of discovered services
expired_services: usizeNumber of expired services
Trait Implementations§
Source§impl Clone for RegistryStats
impl Clone for RegistryStats
Source§fn clone(&self) -> RegistryStats
fn clone(&self) -> RegistryStats
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 moreAuto Trait Implementations§
impl Freeze for RegistryStats
impl RefUnwindSafe for RegistryStats
impl Send for RegistryStats
impl Sync for RegistryStats
impl Unpin for RegistryStats
impl UnwindSafe for RegistryStats
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