Trait diesel::query_builder::UndecoratedInsertRecord
source · pub trait UndecoratedInsertRecord<Table> { }
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.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.