Trait helium_api::IntoVec[][src]

pub trait IntoVec {
    type Item;
#[must_use]    fn into_vec<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Self::Item>>> + Send + 'async_trait>>
    where
        Self: 'async_trait
; }

Associated Types

Loading content...

Required methods

#[must_use]fn into_vec<'async_trait>(
    self
) -> Pin<Box<dyn Future<Output = Result<Vec<Self::Item>>> + Send + 'async_trait>> where
    Self: 'async_trait, 
[src]

Loading content...

Implementors

impl<T> IntoVec for Stream<T> where
    T: Send
[src]

type Item = T

Loading content...