[][src]Trait postgres_querybuilder::prelude::QueryBuilderWithWhere

pub trait QueryBuilderWithWhere {
    fn where_eq<T: 'static + ToSql + Sync + Clone>(
        &mut self,
        field: &str,
        value: T
    );
fn where_ne<T: 'static + ToSql + Sync + Clone>(
        &mut self,
        field: &str,
        value: T
    ); }

Required methods

fn where_eq<T: 'static + ToSql + Sync + Clone>(&mut self, field: &str, value: T)

fn where_ne<T: 'static + ToSql + Sync + Clone>(&mut self, field: &str, value: T)

Loading content...

Implementors

impl QueryBuilderWithWhere for SelectBuilder[src]

impl QueryBuilderWithWhere for UpdateBuilder[src]

Loading content...