differential_dataflow::trace::implementations

Trait PreferredContainer

Source
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§

Source

type Container: BatchContainer + PushInto<Self::Owned>

The preferred container for the type.

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.

Implementations on Foreign Types§

Source§

impl<T: Ord + Clone + 'static> PreferredContainer for [T]

Implementors§

Source§

impl<T: Ord + Clone + 'static> PreferredContainer for T