pub struct Aggregate {
pub op: String,
pub n: Option<i64>,
pub var: Var,
}Expand description
An aggregate find element.
Fields§
§op: StringOperation name (count, sum, …).
n: Option<i64>Optional leading constant argument ((min 3 ?x)).
var: VarAggregated variable.
Trait Implementations§
impl Eq for Aggregate
impl StructuralPartialEq for Aggregate
Auto Trait Implementations§
impl Freeze for Aggregate
impl RefUnwindSafe for Aggregate
impl Send for Aggregate
impl Sync for Aggregate
impl Unpin for Aggregate
impl UnsafeUnpin for Aggregate
impl UnwindSafe for Aggregate
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