pub trait OverStatement {
    fn partition_by<T>(&mut self, col: T) -> &mut Self
    where
        T: IntoColumnRef
, { ... } fn partition_by_customs<I, T>(&mut self, cols: I) -> &mut Self
    where
        T: ToString,
        I: IntoIterator<Item = T>
, { ... } fn partition_by_columns<I, T>(&mut self, cols: I) -> &mut Self
    where
        T: IntoColumnRef,
        I: IntoIterator<Item = T>
, { ... } }

Provided Methods§

Partition by column.

Partition by custom string.

Partition by vector of columns.

Implementors§