pub struct LoadStats {
pub total_load: f64,
pub avg_load: f64,
pub max_load: f64,
pub min_load: f64,
pub shard_count: usize,
}Expand description
Load statistics
Fields§
§total_load: f64§avg_load: f64§max_load: f64§min_load: f64§shard_count: usizeTrait Implementations§
Source§impl<'de> Deserialize<'de> for LoadStats
impl<'de> Deserialize<'de> for LoadStats
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
Auto Trait Implementations§
impl Freeze for LoadStats
impl RefUnwindSafe for LoadStats
impl Send for LoadStats
impl Sync for LoadStats
impl Unpin for LoadStats
impl UnwindSafe for LoadStats
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