pub struct JoinMultiplePin<C> {
    pub streams: C,
}
Expand description

Join a collection of pinned OrderedStreams.

This is identical to JoinMultiple, but accepts OrderedStreams 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§

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
The type ordered by this stream. Read more
The unordered data carried by this stream Read more
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
The minimum value of the ordering for any future items. Read more
Returns the bounds on the remaining length of the stream.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.