pub trait Container<T>: Sealed<T> {
type Iter: Iterator<Item = T>;
// Required method
fn get_iter(&self) -> Self::Iter;
}
Expand description
A utility trait to abstract over container-like things.
This trait is sealed and an implementation detail - its internals should not be relied on by users.