1 2 3 4 5 6 7 8 9 10 11 12
/// Cluster statistics
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct ClusterStatistics {
/// Total number of touched clusters
pub total: u32,
/// Total number of successful clusters
pub successful: u32,
/// Total number of skipped clusters
pub skipped: u32,
}