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;
}

Apps should not need to concern themselves with this trait.

Required Methods

fn is_noop(&self) -> bool

fn to_sql(&self, out: &mut DB::QueryBuilder) -> BuildQueryResult

Implementors