pub enum AggregateOp {
Count,
Sum(ColumnName),
Avg(ColumnName),
Min(ColumnName),
Max(ColumnName),
Ids {
element_type: FlussoType,
},
}Variants§
Count
Sum(ColumnName)
Avg(ColumnName)
Min(ColumnName)
Max(ColumnName)
Ids
Collect the related table’s primary keys into a flat scalar array. The element type is stated explicitly (the schema names it) so the array’s mapping is known without touching the database.
Fields
§
element_type: FlussoTypeTrait Implementations§
Source§impl Clone for AggregateOp
impl Clone for AggregateOp
Source§fn clone(&self) -> AggregateOp
fn clone(&self) -> AggregateOp
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 AggregateOp
impl Debug for AggregateOp
Source§impl<'de> Deserialize<'de> for AggregateOp
impl<'de> Deserialize<'de> for AggregateOp
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 Hash for AggregateOp
impl Hash for AggregateOp
Auto Trait Implementations§
impl Freeze for AggregateOp
impl RefUnwindSafe for AggregateOp
impl Send for AggregateOp
impl Sync for AggregateOp
impl Unpin for AggregateOp
impl UnsafeUnpin for AggregateOp
impl UnwindSafe for AggregateOp
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