[][src]Trait postgres_querybuilder::prelude::QueryBuilderWithSet

pub trait QueryBuilderWithSet {
    fn set<T: 'static + ToSql + Sync + Clone>(
        &mut self,
        field: &str,
        value: T
    ) -> &mut Self;
fn set_computed(&mut self, field: &str, value: &str) -> &mut Self; }

Required methods

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

fn set_computed(&mut self, field: &str, value: &str) -> &mut Self

Loading content...

Implementors

impl QueryBuilderWithSet for UpdateBuilder[src]

Loading content...