pub trait Collect {
    type Item;

    fn collect(self, col: &impl Collector) -> Self::Item;
}
Expand description

Something that can be collected in collection phase.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors