Trait diesel::query_builder::UndecoratedInsertRecord
source · pub trait UndecoratedInsertRecord<Table> { }
Expand description
Marker trait to indicate that no additional operations have been added to a record for insert.
This is used to prevent things like
.on_conflict_do_nothing().on_conflict_do_nothing()
from compiling.