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
sourceimpl<C> JoinMultiplePin<C>
impl<C> JoinMultiplePin<C>
Trait Implementations
sourceimpl<C: Clone> Clone for JoinMultiplePin<C>
impl<C: Clone> Clone for JoinMultiplePin<C>
sourcefn clone(&self) -> JoinMultiplePin<C>
fn clone(&self) -> JoinMultiplePin<C>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<C: Debug> Debug for JoinMultiplePin<C>
impl<C: Debug> Debug for JoinMultiplePin<C>
sourceimpl<C: Default> Default for JoinMultiplePin<C>
impl<C: Default> Default for JoinMultiplePin<C>
sourcefn default() -> JoinMultiplePin<C>
fn default() -> JoinMultiplePin<C>
Returns the “default value” for a type. Read more
sourceimpl<C, S> OrderedStream for JoinMultiplePin<C> where
for<'a> Pin<&'a mut C>: IntoIterator<Item = Pin<&'a mut Peekable<S>>>,
S: OrderedStream,
impl<C, S> OrderedStream for JoinMultiplePin<C> where
for<'a> Pin<&'a mut C>: IntoIterator<Item = Pin<&'a mut Peekable<S>>>,
S: OrderedStream,
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
sourcefn 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 more
sourcefn 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
impl<'__pin, C> Unpin for JoinMultiplePin<C> where
__Origin<'__pin, C>: Unpin,
Auto Trait Implementations
impl<C> RefUnwindSafe for JoinMultiplePin<C> where
C: RefUnwindSafe,
impl<C> Send for JoinMultiplePin<C> where
C: Send,
impl<C> Sync for JoinMultiplePin<C> where
C: Sync,
impl<C> UnwindSafe for JoinMultiplePin<C> where
C: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more