Struct futures_util::future::IntoStream [−][src]
#[must_use = "futures/streams/sinks do nothing unless you `.await` or poll them"]pub struct IntoStream<F> { /* fields omitted */ }
Expand description
Stream for the into_stream method.
Trait Implementations
impl<F> Debug for IntoStream<F> where
Once<F>: Debug, [src]
impl<F> Debug for IntoStream<F> where
Once<F>: Debug, [src]impl<F> FusedStream for IntoStream<F> where
Once<F>: FusedStream, [src]
impl<F> FusedStream for IntoStream<F> where
Once<F>: FusedStream, [src]fn is_terminated(&self) -> bool[src]
fn is_terminated(&self) -> bool[src]Returns true if the stream should no longer be polled.
impl<F> Stream for IntoStream<F> where
Once<F>: Stream, [src]
impl<F> Stream for IntoStream<F> where
Once<F>: Stream, [src]impl<'__pin, F> Unpin for IntoStream<F> where
__Origin<'__pin, F>: Unpin, [src]
__Origin<'__pin, F>: Unpin,
Auto Trait Implementations
impl<F> RefUnwindSafe for IntoStream<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for IntoStream<F> where
F: Send,
F: Send,
impl<F> Sync for IntoStream<F> where
F: Sync,
F: Sync,
impl<F> UnwindSafe for IntoStream<F> where
F: UnwindSafe,
F: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more