pub struct ShardManagerStats {
pub total_shards: usize,
pub active_shards: usize,
pub migrating_shards: usize,
pub total_size_bytes: u64,
pub total_row_count: u64,
}Expand description
Statistics for the shard manager.
Fields§
§total_shards: usize§active_shards: usize§migrating_shards: usize§total_size_bytes: u64§total_row_count: u64Trait Implementations§
Source§impl Clone for ShardManagerStats
impl Clone for ShardManagerStats
Source§fn clone(&self) -> ShardManagerStats
fn clone(&self) -> ShardManagerStats
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ShardManagerStats
impl RefUnwindSafe for ShardManagerStats
impl Send for ShardManagerStats
impl Sync for ShardManagerStats
impl Unpin for ShardManagerStats
impl UnsafeUnpin for ShardManagerStats
impl UnwindSafe for ShardManagerStats
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