pub enum AggregateResult {
Number(f64),
String(String),
Map(HashMap<String, Value>),
List(Vec<Value>),
None,
}Expand description
Result of an aggregation operation
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AggregateResult
impl Clone for AggregateResult
Source§fn clone(&self) -> AggregateResult
fn clone(&self) -> AggregateResult
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for AggregateResult
impl RefUnwindSafe for AggregateResult
impl Send for AggregateResult
impl Sync for AggregateResult
impl Unpin for AggregateResult
impl UnwindSafe for AggregateResult
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