Struct ordered_stream::IntoOrdering
source · [−]pub struct IntoOrdering<S> { /* private fields */ }
Expand description
A Stream
for the into_ordering
function.
Trait Implementations
sourceimpl<S: Debug> Debug for IntoOrdering<S>
impl<S: Debug> Debug for IntoOrdering<S>
sourceimpl<S> FusedStream for IntoOrdering<S> where
S: FusedOrderedStream,
impl<S> FusedStream for IntoOrdering<S> where
S: FusedOrderedStream,
sourcefn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns true
if the stream should no longer be polled.
sourceimpl<S: OrderedStream> Stream for IntoOrdering<S>
impl<S: OrderedStream> Stream for IntoOrdering<S>
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
__Origin<'__pin, S>: Unpin,
Auto Trait Implementations
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
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