pub struct AggregationColumn { /* private fields */ }Implementations§
Source§impl AggregationColumn
impl AggregationColumn
pub fn new<S: Into<String>>( aggregation_type: AggregationType, source_column: S, destination_column: S, ) -> Self
pub fn aggregation_type(&self) -> AggregationType
pub fn source_column(&self) -> &str
pub fn destination_column(&self) -> &str
Trait Implementations§
Source§impl Clone for AggregationColumn
impl Clone for AggregationColumn
Source§fn clone(&self) -> AggregationColumn
fn clone(&self) -> AggregationColumn
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 AggregationColumn
impl RefUnwindSafe for AggregationColumn
impl Send for AggregationColumn
impl Sync for AggregationColumn
impl Unpin for AggregationColumn
impl UnsafeUnpin for AggregationColumn
impl UnwindSafe for AggregationColumn
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