Trait quaint::ast::Groupable

source ·
pub trait Groupable<'a>where
    Self: Sized,{
    // Required method
    fn group(self) -> GroupByDefinition<'a>;
}
Expand description

An item that can be used in the GROUP BY statement

Required Methods§

source

fn group(self) -> GroupByDefinition<'a>

Group by self

Implementations on Foreign Types§

source§

impl<'a> Groupable<'a> for &'a str

Implementors§

source§

impl<'a> Groupable<'a> for Column<'a>