Struct diesel::query_builder::where_clause::NoWhereClause [] [src]

pub struct NoWhereClause;

Trait Implementations

impl QueryId for NoWhereClause

type QueryId = Self

fn has_static_query_id() -> bool

fn query_id() -> Option<TypeId>

impl<DB: Backend> QueryFragment<DB> for NoWhereClause

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>

type Output = WhereClause<Predicate>

fn and(self, predicate: Predicate) -> Self::Output

impl<DB: Backend> Into<Option<Box<QueryFragment<DB>>>> for NoWhereClause

fn into(self) -> Option<Box<QueryFragment<DB>>>

Derived Implementations

impl Copy for NoWhereClause

impl Clone for NoWhereClause

fn clone(&self) -> NoWhereClause

1.0.0fn clone_from(&mut self, source: &Self)

impl Debug for NoWhereClause

fn fmt(&self, __arg_0: &mut Formatter) -> Result