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§
Source§impl Clone for MinAggregation
impl Clone for MinAggregation
Source§fn clone(&self) -> MinAggregation
fn clone(&self) -> MinAggregation
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 MinAggregation
impl Debug for MinAggregation
Source§impl From<MinAggregation> for Aggregation
impl From<MinAggregation> for Aggregation
Source§fn from(q: MinAggregation) -> Self
fn from(q: MinAggregation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MinAggregation
impl PartialEq for MinAggregation
Source§impl Serialize for MinAggregation
impl Serialize for MinAggregation
impl StructuralPartialEq for MinAggregation
Auto Trait Implementations§
impl Freeze for MinAggregation
impl RefUnwindSafe for MinAggregation
impl Send for MinAggregation
impl Sync for MinAggregation
impl Unpin for MinAggregation
impl UnwindSafe for MinAggregation
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