Struct elasticsearch_dsl::search::aggregations::metrics::MinAggregation
source · [−]pub struct MinAggregation { /* private fields */ }
Expand description
A single-value
metrics aggregation that keeps track and returns the minimum value among numeric
values extracted from the aggregated documents.
The
min
andmax
aggregation operate on thedouble
representation of the data. As a consequence, the result may be approximate when running on longs whose absolute value is greater than2^53
.
Implementations
Trait Implementations
sourceimpl Clone for MinAggregation
impl Clone for MinAggregation
sourcefn clone(&self) -> MinAggregation
fn clone(&self) -> MinAggregation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MinAggregation
impl Debug for MinAggregation
sourceimpl From<MinAggregation> for Aggregation
impl From<MinAggregation> for Aggregation
sourcefn from(q: MinAggregation) -> Self
fn from(q: MinAggregation) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<MinAggregation> for MinAggregation
impl PartialEq<MinAggregation> for MinAggregation
sourcefn eq(&self, other: &MinAggregation) -> bool
fn eq(&self, other: &MinAggregation) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MinAggregation) -> bool
fn ne(&self, other: &MinAggregation) -> bool
This method tests for !=
.
sourceimpl Serialize for MinAggregation
impl Serialize for MinAggregation
impl StructuralPartialEq for MinAggregation
Auto Trait Implementations
impl RefUnwindSafe for MinAggregation
impl Send for MinAggregation
impl Sync for MinAggregation
impl Unpin for MinAggregation
impl UnwindSafe for MinAggregation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more