pub struct ClusterStatistics {
pub total: u32,
pub successful: u32,
pub skipped: u32,
}
Expand description
Cluster statistics
Fields§
§total: u32
Total number of touched clusters
successful: u32
Total number of successful clusters
skipped: u32
Total number of skipped clusters
Trait Implementations§
Source§impl Clone for ClusterStatistics
impl Clone for ClusterStatistics
Source§fn clone(&self) -> ClusterStatistics
fn clone(&self) -> ClusterStatistics
Returns a copy 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 moreSource§impl Debug for ClusterStatistics
impl Debug for ClusterStatistics
Source§impl<'de> Deserialize<'de> for ClusterStatistics
impl<'de> Deserialize<'de> for ClusterStatistics
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 ClusterStatistics
impl PartialEq for ClusterStatistics
Source§impl Serialize for ClusterStatistics
impl Serialize for ClusterStatistics
impl Eq for ClusterStatistics
impl StructuralPartialEq for ClusterStatistics
Auto Trait Implementations§
impl Freeze for ClusterStatistics
impl RefUnwindSafe for ClusterStatistics
impl Send for ClusterStatistics
impl Sync for ClusterStatistics
impl Unpin for ClusterStatistics
impl UnwindSafe for ClusterStatistics
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