pub trait DebugStream: Debug {
    type Item;

    // Required method
    fn poll_next(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>
    ) -> Poll<Option<Self::Item>>;
}

Required Associated Types§

Required Methods§

source

fn poll_next( self: Pin<&mut Self>, cx: &mut Context<'_> ) -> Poll<Option<Self::Item>>

Implementors§

source§

impl<I, T> DebugStream for T
where T: Debug + Stream<Item = I>,

§

type Item = I