pub struct DocCountAggregation {
pub doc_count: f64,
pub sub_aggs: Map<String, AggregationResponse>,
pub source_aggregation: Option<Aggregation>,
pub meta: Option<Value>,
}Expand description
DocCountAggregation
Fields§
§doc_count: f64§sub_aggs: Map<String, AggregationResponse>§source_aggregation: Option<Aggregation>§meta: Option<Value>Trait Implementations§
Source§impl Clone for DocCountAggregation
impl Clone for DocCountAggregation
Source§fn clone(&self) -> DocCountAggregation
fn clone(&self) -> DocCountAggregation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DocCountAggregation
impl Debug for DocCountAggregation
Source§impl<'de> Deserialize<'de> for DocCountAggregation
impl<'de> Deserialize<'de> for DocCountAggregation
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 DocCountAggregation
impl PartialEq for DocCountAggregation
Source§fn eq(&self, other: &DocCountAggregation) -> bool
fn eq(&self, other: &DocCountAggregation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DocCountAggregation
impl Serialize for DocCountAggregation
impl StructuralPartialEq for DocCountAggregation
Auto Trait Implementations§
impl Freeze for DocCountAggregation
impl RefUnwindSafe for DocCountAggregation
impl Send for DocCountAggregation
impl Sync for DocCountAggregation
impl Unpin for DocCountAggregation
impl UnsafeUnpin for DocCountAggregation
impl UnwindSafe for DocCountAggregation
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