PullStream

Trait PullStream 

Source
pub trait PullStream<E>:
    TryStream<Ok = Bytes, Error = (E, Option<Duration>)>
    + Send
    + Unpin { }

Implementors§

Source§

impl<E, T> PullStream<E> for T
where T: TryStream<Ok = Bytes, Error = (E, Option<Duration>)> + Send + Unpin,