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
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.