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

pub trait Changeset {
    type Target: QuerySource;
    fn is_noop(&self) -> bool;
    fn to_sql(&self, out: &mut QueryBuilder) -> BuildQueryResult;
}

Apps should not need to concern themselves with this trait.

Associated Types

type Target: QuerySource

Required Methods

fn is_noop(&self) -> bool

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

Implementors