Trait 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

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.

Implementations on Foreign Types§

Source§

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

Implementors§

Source§

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