pub struct AggregateComputation {
pub function: AggregateType,
pub column: String,
pub alias: String,
pub distinct: bool,
}Expand description
Individual aggregate computation
Fields§
§function: AggregateType§column: String§alias: String§distinct: boolTrait Implementations§
Source§impl Clone for AggregateComputation
impl Clone for AggregateComputation
Source§fn clone(&self) -> AggregateComputation
fn clone(&self) -> AggregateComputation
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 AggregateComputation
impl RefUnwindSafe for AggregateComputation
impl Send for AggregateComputation
impl Sync for AggregateComputation
impl Unpin for AggregateComputation
impl UnsafeUnpin for AggregateComputation
impl UnwindSafe for AggregateComputation
Blanket Implementations§
impl<T> Allocation for T
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