Struct elasticsearch_dsl::search::ClusterStatistics
source · 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§fn eq(&self, other: &ClusterStatistics) -> bool
fn eq(&self, other: &ClusterStatistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ClusterStatistics
impl Serialize for ClusterStatistics
impl Eq for ClusterStatistics
impl StructuralEq for ClusterStatistics
impl StructuralPartialEq for ClusterStatistics
Auto Trait Implementations§
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