pub struct StoreStatsReport {
pub generated_at_unix_ms: u64,
pub total_records: u64,
pub storage_bytes: u64,
pub namespaces: Vec<NamespaceStats>,
pub maintenance: MaintenanceStats,
pub engine: EngineTuningInfo,
}Fields§
§generated_at_unix_ms: u64§total_records: u64§storage_bytes: u64§namespaces: Vec<NamespaceStats>§maintenance: MaintenanceStats§engine: EngineTuningInfoTrait Implementations§
Source§impl Clone for StoreStatsReport
impl Clone for StoreStatsReport
Source§fn clone(&self) -> StoreStatsReport
fn clone(&self) -> StoreStatsReport
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 Debug for StoreStatsReport
impl Debug for StoreStatsReport
Source§impl<'de> Deserialize<'de> for StoreStatsReport
impl<'de> Deserialize<'de> for StoreStatsReport
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 PartialEq for StoreStatsReport
impl PartialEq for StoreStatsReport
Source§fn eq(&self, other: &StoreStatsReport) -> bool
fn eq(&self, other: &StoreStatsReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StoreStatsReport
impl Serialize for StoreStatsReport
impl Eq for StoreStatsReport
impl StructuralPartialEq for StoreStatsReport
Auto Trait Implementations§
impl Freeze for StoreStatsReport
impl RefUnwindSafe for StoreStatsReport
impl Send for StoreStatsReport
impl Sync for StoreStatsReport
impl Unpin for StoreStatsReport
impl UnsafeUnpin for StoreStatsReport
impl UnwindSafe for StoreStatsReport
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