pub struct ProviderRegistryStats {
pub total_providers: usize,
pub total_features: usize,
pub total_operations: usize,
pub provider_stats: HashMap<String, ProviderStats>,
}
Expand description
Provider registry statistics
Fields§
§total_providers: usize
§total_features: usize
§total_operations: usize
§provider_stats: HashMap<String, ProviderStats>
Trait Implementations§
Source§impl Clone for ProviderRegistryStats
impl Clone for ProviderRegistryStats
Source§fn clone(&self) -> ProviderRegistryStats
fn clone(&self) -> ProviderRegistryStats
Returns a copy 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 ProviderRegistryStats
impl Debug for ProviderRegistryStats
Auto Trait Implementations§
impl Freeze for ProviderRegistryStats
impl RefUnwindSafe for ProviderRegistryStats
impl Send for ProviderRegistryStats
impl Sync for ProviderRegistryStats
impl Unpin for ProviderRegistryStats
impl UnwindSafe for ProviderRegistryStats
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