Trait UpdateSet

Source
pub trait UpdateSet {
    // Required method
    fn write_set(&self, sql: &mut String);
}

Required Methods§

Source

fn write_set(&self, sql: &mut String)

Implementors§

Source§

impl<H, T> UpdateSet for And<H, T>
where H: UpdateSet, T: UpdateSet,

Source§

impl<T, A> UpdateSet for Op<T, A, Bind, Eq>
where T: Table,

Source§

impl<T, A, U> UpdateSet for Op<T, A, U, Eq>
where T: Table, U: Primitive,