pub struct ProviderStats {
pub feature_count: usize,
pub operation_count: usize,
pub supported_features: Vec<String>,
}
Expand description
Individual provider statistics
Fields§
§feature_count: usize
§operation_count: usize
§supported_features: Vec<String>
Trait Implementations§
Source§impl Clone for ProviderStats
impl Clone for ProviderStats
Source§fn clone(&self) -> ProviderStats
fn clone(&self) -> ProviderStats
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 ProviderStats
impl Debug for ProviderStats
Auto Trait Implementations§
impl Freeze for ProviderStats
impl RefUnwindSafe for ProviderStats
impl Send for ProviderStats
impl Sync for ProviderStats
impl Unpin for ProviderStats
impl UnwindSafe for ProviderStats
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