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
impl<'a, T, Table> UndecoratedInsertRecord<Table> for &'a [T] where &'a T: UndecoratedInsertRecord<Table>
impl<'a, T, Table> UndecoratedInsertRecord<Table> for &'a Vec<T> where &'a [T]: UndecoratedInsertRecord<Table>
impl<'a: 'insert, 'insert> UndecoratedInsertRecord<table> for &'insert NewMigration<'a>