pub struct AggregationClause {
pub function: AggFunction,
pub column: String,
pub alias: Option<String>,
}Fields§
§function: AggFunction§column: String§alias: Option<String>Trait Implementations§
Source§impl Clone for AggregationClause
impl Clone for AggregationClause
Source§fn clone(&self) -> AggregationClause
fn clone(&self) -> AggregationClause
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 moreAuto Trait Implementations§
impl Freeze for AggregationClause
impl RefUnwindSafe for AggregationClause
impl Send for AggregationClause
impl Sync for AggregationClause
impl Unpin for AggregationClause
impl UnsafeUnpin for AggregationClause
impl UnwindSafe for AggregationClause
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