Struct ordered_stream::JoinMultiplePin
source · pub struct JoinMultiplePin<C> {
pub streams: C,
}
Expand description
Join a collection of pinned OrderedStream
s.
This is identical to JoinMultiple
, but accepts OrderedStream
s that are not Unpin
by
requiring that the collection provide a pinned IntoIterator
implementation.
This is not a feature available in most std
collections. If you wish to use them, you
should use Box::pin
to make the stream Unpin
before inserting it in the collection,
and then use JoinMultiple
on the resulting collection.
Fields§
§streams: C
Implementations§
source§impl<C> JoinMultiplePin<C>
impl<C> JoinMultiplePin<C>
Trait Implementations§
source§impl<C: Clone> Clone for JoinMultiplePin<C>
impl<C: Clone> Clone for JoinMultiplePin<C>
source§fn clone(&self) -> JoinMultiplePin<C>
fn clone(&self) -> JoinMultiplePin<C>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<C: Debug> Debug for JoinMultiplePin<C>
impl<C: Debug> Debug for JoinMultiplePin<C>
source§impl<C: Default> Default for JoinMultiplePin<C>
impl<C: Default> Default for JoinMultiplePin<C>
source§fn default() -> JoinMultiplePin<C>
fn default() -> JoinMultiplePin<C>
Returns the “default value” for a type. Read more
source§impl<C, S> OrderedStream for JoinMultiplePin<C>where
for<'a> Pin<&'a mut C>: IntoIterator<Item = Pin<&'a mut Peekable<S>>>,
S: OrderedStream,
S::Ordering: Clone,
impl<C, S> OrderedStream for JoinMultiplePin<C>where for<'a> Pin<&'a mut C>: IntoIterator<Item = Pin<&'a mut Peekable<S>>>, S: OrderedStream, S::Ordering: Clone,
§type Ordering = <S as OrderedStream>::Ordering
type Ordering = <S as OrderedStream>::Ordering
The type ordered by this stream. Read more
§type Data = <S as OrderedStream>::Data
type Data = <S as OrderedStream>::Data
The unordered data carried by this stream Read more
source§fn poll_next_before(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
before: Option<&S::Ordering>
) -> Poll<PollResult<S::Ordering, S::Data>>
fn poll_next_before( self: Pin<&mut Self>, cx: &mut Context<'_>, before: Option<&S::Ordering> ) -> Poll<PollResult<S::Ordering, S::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