pub trait Merge {
type Item;
// Required method
fn insert(&mut self, item: Self::Item);
}
Expand description
For collections that can be built from single elements.
Used by #[derive(FromSqlRow)]
when a field is tagged with the attribute #[row(merge)]
.