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§
sourcefn group(self) -> GroupByDefinition<'a>
fn group(self) -> GroupByDefinition<'a>
Group by self
Object Safety§
This trait is not object safe.