pub struct StoreStats {
pub total_requests: i64,
pub total_sessions: i64,
pub oldest_ts: Option<i64>,
pub newest_ts: Option<i64>,
pub proxy_count: i64,
pub db_file_size: u64,
pub wal_file_size: u64,
}Expand description
Database-level stats returned by mcpr store stats.
Fields§
§total_requests: i64§total_sessions: i64§oldest_ts: Option<i64>§newest_ts: Option<i64>§proxy_count: i64§db_file_size: u64§wal_file_size: u64Trait Implementations§
Source§impl Debug for StoreStats
impl Debug for StoreStats
Auto Trait Implementations§
impl Freeze for StoreStats
impl RefUnwindSafe for StoreStats
impl Send for StoreStats
impl Sync for StoreStats
impl Unpin for StoreStats
impl UnsafeUnpin for StoreStats
impl UnwindSafe for StoreStats
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