Trait diesel::query_builder::Changeset [] [src]

pub trait Changeset<DB: Backend> {
    fn is_noop(&self) -> bool;
    fn to_sql(&self, out: &mut DB::QueryBuilder) -> BuildQueryResult;
    fn collect_binds(&self, out: &mut DB::BindCollector) -> QueryResult<()>;
}

Apps should not need to concern themselves with this trait.

Required Methods

Implementors