pub trait Extend<A> {
    fn extend<'life0, 'async_trait, T>(
        &'life0 mut self,
        iter: T
    ) -> Pin<Box<dyn Future<Output = ()> + 'async_trait>>
   where
        T: 'async_trait + IntoIterator<Item = A>,
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

Extend a collection with the contents of an iterator.

Required Methods

Extends a collection with the contents of an iterator.

Implementations on Foreign Types

Implementors