Trait diesel::query_builder::insert_statement::UndecoratedInsertRecord [] [src]

pub trait UndecoratedInsertRecord<Table> { }

Marker trait to indicate that no additional operations have been added to a record for insert. Used to prevent things like insert(&vec![user.on_conflict_do_nothing(), user2.on_conflict_do_nothing()]) from compiling.

Implementors