pub trait Vectable<T> {
    fn to_vec<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Vec<T>> + Send + 'async_trait>>
    where
        Self: 'async_trait
; }

Required methods

Implementors

Glue trait to turn streams into vectors.