pub enum AggregateFunction {
Count,
Sum,
Avg,
Min,
Max,
GroupConcat {
separator: Option<String>,
},
Sample,
Custom(NamedNode),
}
Expand description
An aggregate function name.
Variants§
Trait Implementations§
Source§impl Clone for AggregateFunction
impl Clone for AggregateFunction
Source§fn clone(&self) -> AggregateFunction
fn clone(&self) -> AggregateFunction
Returns a copy of the value. Read more
1.0.0 · 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 AggregateFunction
impl Debug for AggregateFunction
Source§impl Display for AggregateFunction
impl Display for AggregateFunction
Source§impl Hash for AggregateFunction
impl Hash for AggregateFunction
Source§impl PartialEq for AggregateFunction
impl PartialEq for AggregateFunction
impl Eq for AggregateFunction
impl StructuralPartialEq for AggregateFunction
Auto Trait Implementations§
impl Freeze for AggregateFunction
impl RefUnwindSafe for AggregateFunction
impl Send for AggregateFunction
impl Sync for AggregateFunction
impl Unpin for AggregateFunction
impl UnwindSafe for AggregateFunction
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