Struct diesel::pg::PgQueryBuilder
source · [−]pub struct PgQueryBuilder { /* private fields */ }
Expand description
The PostgreSQL query builder
Implementations
sourceimpl PgQueryBuilder
impl PgQueryBuilder
Trait Implementations
sourceimpl Default for PgQueryBuilder
impl Default for PgQueryBuilder
sourcefn default() -> PgQueryBuilder
fn default() -> PgQueryBuilder
Returns the “default value” for a type. Read more
sourceimpl QueryBuilder<Pg> for PgQueryBuilder
impl QueryBuilder<Pg> for PgQueryBuilder
sourcefn push_identifier(&mut self, identifier: &str) -> QueryResult<()>
fn push_identifier(&mut self, identifier: &str) -> QueryResult<()>
Quote identifier
, and add it to the end of the query being
constructed. Read more
sourcefn push_bind_param(&mut self)
fn push_bind_param(&mut self)
Add a placeholder for a bind parameter to the end of the query being constructed. Read more
Auto Trait Implementations
impl RefUnwindSafe for PgQueryBuilder
impl Send for PgQueryBuilder
impl Sync for PgQueryBuilder
impl Unpin for PgQueryBuilder
impl UnwindSafe for PgQueryBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more