Struct ordered_stream::IntoOrdering
source · pub struct IntoOrdering<S> { /* private fields */ }
Expand description
A Stream
for the into_ordering
function.
Trait Implementations§
source§impl<S: Debug> Debug for IntoOrdering<S>
impl<S: Debug> Debug for IntoOrdering<S>
source§impl<S> FusedStream for IntoOrdering<S>where
S: FusedOrderedStream,
impl<S> FusedStream for IntoOrdering<S>where
S: FusedOrderedStream,
source§fn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns
true
if the stream should no longer be polled.source§impl<S: OrderedStream> Stream for IntoOrdering<S>
impl<S: OrderedStream> Stream for IntoOrdering<S>
source§type Item = <S as OrderedStream>::Ordering
type Item = <S as OrderedStream>::Ordering
Values yielded by the stream.
impl<'__pin, S> Unpin for IntoOrdering<S>where
PinnedFieldsOf<__Origin<'__pin, S>>: Unpin,
Auto Trait Implementations§
impl<S> Freeze for IntoOrdering<S>where
S: Freeze,
impl<S> RefUnwindSafe for IntoOrdering<S>where
S: RefUnwindSafe,
impl<S> Send for IntoOrdering<S>where
S: Send,
impl<S> Sync for IntoOrdering<S>where
S: Sync,
impl<S> UnwindSafe for IntoOrdering<S>where
S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more