pub trait Select<'until_build, 'post_query> {
fn limit(self, limit: u64) -> Self;
fn offset(self, offset: u64) -> Self;
fn distinct(self) -> Self;
fn where_clause(
self,
where_clause: &'until_build Condition<'post_query>
) -> Self;
fn build(self) -> (String, Vec<Value<'post_query>>);
}Expand description
Trait representing a select builder.
Required Methods
sourcefn where_clause(self, where_clause: &'until_build Condition<'post_query>) -> Self
fn where_clause(self, where_clause: &'until_build Condition<'post_query>) -> Self
Set a where clause to the query.