Struct diesel::query_builder::where_clause::NoWhereClause
[−]
[src]
pub struct NoWhereClause;
Trait Implementations
impl Copy for NoWhereClause
[src]
impl Clone for NoWhereClause
[src]
fn clone(&self) -> NoWhereClause
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Debug for NoWhereClause
[src]
impl QueryId for NoWhereClause
[src]
impl<DB: Backend> QueryFragment<DB> for NoWhereClause
[src]
fn to_sql(&self, _out: &mut DB::QueryBuilder) -> BuildQueryResult
fn collect_binds(&self, _out: &mut DB::BindCollector) -> QueryResult<()>
fn is_safe_to_cache_prepared(&self) -> bool
impl<Predicate> WhereAnd<Predicate> for NoWhereClause where Predicate: Expression<SqlType=Bool>
[src]
type Output = WhereClause<Predicate>
fn and(self, predicate: Predicate) -> Self::Output
impl<DB: Backend> Into<Option<Box<QueryFragment<DB>>>> for NoWhereClause
[src]
fn into(self) -> Option<Box<QueryFragment<DB>>>
Performs the conversion.