pub trait StatsReader: Send + Sync {
// Required method
fn count_entries<T: Table>(&self) -> ProviderResult<usize>;
}
Expand description
The trait for fetching provider statistics.
Required Methods§
Sourcefn count_entries<T: Table>(&self) -> ProviderResult<usize>
fn count_entries<T: Table>(&self) -> ProviderResult<usize>
Fetch the number of entries in the corresponding [Table]. Depending on the provider, it may route to different data sources other than [Table].
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.