[][src]Function futures_async_combinators::stream::map

pub fn map<St, U, F>(stream: St, f: F) -> impl Stream<Item = U> where
    St: Stream,
    F: FnMut(St::Item) -> U,