Function tokio_stream::stream_ext::merge::poll_next

source ยท
fn poll_next<T, U>(
    first: Pin<&mut T>,
    second: Pin<&mut U>,
    cx: &mut Context<'_>,
) -> Poll<Option<T::Item>>
where T: Stream, U: Stream<Item = T::Item>,