elasticsearch_dsl/search/response/
cluster_statistics.rs

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