pub trait GrowableProducer<A>: Producer<A> {
    fn empty() -> Self;
    fn grow_one(&mut self, a: A);
    fn grow<C>(&mut self, c: C)
    where
        C: Consumer<Item = A>
; }

Required Methods§

Implementations on Foreign Types§

Implementors§