Trait sea_query::query::OverStatement
source · [−]pub trait OverStatement {
fn partition_by<T>(&mut self, col: T) -> &mut Self
where
T: IntoColumnRef,
{ ... }
fn partition_by_customs<T>(&mut self, cols: Vec<T>) -> &mut Self
where
T: ToString,
{ ... }
fn partition_by_columns<T>(&mut self, cols: Vec<T>) -> &mut Self
where
T: IntoColumnRef,
{ ... }
}
Provided methods
fn partition_by<T>(&mut self, col: T) -> &mut Self where
T: IntoColumnRef,
fn partition_by<T>(&mut self, col: T) -> &mut Self where
T: IntoColumnRef,
Partition by column.
fn partition_by_customs<T>(&mut self, cols: Vec<T>) -> &mut Self where
T: ToString,
fn partition_by_customs<T>(&mut self, cols: Vec<T>) -> &mut Self where
T: ToString,
Partition by custom string.
fn partition_by_columns<T>(&mut self, cols: Vec<T>) -> &mut Self where
T: IntoColumnRef,
fn partition_by_columns<T>(&mut self, cols: Vec<T>) -> &mut Self where
T: IntoColumnRef,
Partition by vector of columns.