pub struct NamedAggregate {
pub name: FieldName,
pub aggregate: Aggregate,
}Expand description
A named aggregate projection.
Fields§
§name: FieldNameOutput field name.
aggregate: AggregateAggregate expression.
Trait Implementations§
Source§impl Clone for NamedAggregate
impl Clone for NamedAggregate
Source§fn clone(&self) -> NamedAggregate
fn clone(&self) -> NamedAggregate
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 NamedAggregate
impl Debug for NamedAggregate
impl Eq for NamedAggregate
Source§impl PartialEq for NamedAggregate
impl PartialEq for NamedAggregate
impl StructuralPartialEq for NamedAggregate
Auto Trait Implementations§
impl Freeze for NamedAggregate
impl RefUnwindSafe for NamedAggregate
impl Send for NamedAggregate
impl Sync for NamedAggregate
impl Unpin for NamedAggregate
impl UnsafeUnpin for NamedAggregate
impl UnwindSafe for NamedAggregate
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