pub trait InsertRelation<R>: InsertModel {
// Provided methods
fn bind_relation(&self, _item: &mut R) { ... }
fn relation_links(&self, _item: &R) -> Vec<RelationLinkPlan> { ... }
}Provided Methods§
fn bind_relation(&self, _item: &mut R)
fn relation_links(&self, _item: &R) -> Vec<RelationLinkPlan>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.