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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".