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