pub trait PreferredContainer: ToOwned {
type Container: BatchContainer + PushInto<Self::Owned>;
}
Expand description
A type with a preferred container.
Examples include types that implement Clone
who prefer
Required Associated Types§
sourcetype Container: BatchContainer + PushInto<Self::Owned>
type Container: BatchContainer + PushInto<Self::Owned>
The preferred container for the type.
Object Safety§
This trait is not object safe.