Struct ordered_stream::MapItem
source · pub struct MapItem<S, F> { /* private fields */ }
Expand description
A stream for the map_item
function.
Implementations§
source§impl<S, F> MapItem<S, F>
impl<S, F> MapItem<S, F>
sourcepub fn into_inner(self) -> S
pub fn into_inner(self) -> S
Convert to source stream.
Trait Implementations§
source§impl<S, F, R> OrderedStream for MapItem<S, F>where
S: OrderedStream,
F: FnMut(&S::Ordering, S::Data) -> R,
impl<S, F, R> OrderedStream for MapItem<S, F>where S: OrderedStream, F: FnMut(&S::Ordering, S::Data) -> R,
§type Ordering = <S as OrderedStream>::Ordering
type Ordering = <S as OrderedStream>::Ordering
The type ordered by this stream. Read more
source§fn poll_next_before(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
before: Option<&Self::Ordering>
) -> Poll<PollResult<Self::Ordering, Self::Data>>
fn poll_next_before( self: Pin<&mut Self>, cx: &mut Context<'_>, before: Option<&Self::Ordering> ) -> Poll<PollResult<Self::Ordering, Self::Data>>
Attempt to pull out the next value of this stream, registering the current task for wakeup
if needed, and returning
NoneBefore
if it is known that the stream will not produce any
more values ordered before the given point. Read moresource§fn position_hint(&self) -> Option<MaybeBorrowed<'_, Self::Ordering>>
fn position_hint(&self) -> Option<MaybeBorrowed<'_, Self::Ordering>>
The minimum value of the ordering for any future items. Read more