[−][src]Struct smol::stream::NextFuture
Future for the StreamExt::next()
method.
Trait Implementations
impl<'a, S> Debug for NextFuture<'a, S> where
S: Debug + ?Sized,
[src]
S: Debug + ?Sized,
impl<'_, S> Future for NextFuture<'_, S> where
S: Unpin + Stream + ?Sized,
[src]
S: Unpin + Stream + ?Sized,
type Output = Option<<S as Stream>::Item>
The type of value produced on completion.
pub fn poll(
self: Pin<&mut NextFuture<'_, S>>,
cx: &mut Context<'_>
) -> Poll<<NextFuture<'_, S> as Future>::Output>
[src]
self: Pin<&mut NextFuture<'_, S>>,
cx: &mut Context<'_>
) -> Poll<<NextFuture<'_, S> as Future>::Output>
impl<'_, S> Unpin for NextFuture<'_, S> where
S: Unpin + ?Sized,
[src]
S: Unpin + ?Sized,
Auto Trait Implementations
impl<'a, S: ?Sized> RefUnwindSafe for NextFuture<'a, S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
impl<'a, S: ?Sized> Send for NextFuture<'a, S> where
S: Send,
S: Send,
impl<'a, S: ?Sized> Sync for NextFuture<'a, S> where
S: Sync,
S: Sync,
impl<'a, S> !UnwindSafe for NextFuture<'a, S>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ
[src]
impl<T> From<T> for T
[src]
impl<F> FutureExt for F where
F: Future + ?Sized,
[src]
F: Future + ?Sized,
pub fn poll(&mut self, cx: &mut Context<'_>) -> Poll<Self::Output> where
Self: Unpin,
[src]
Self: Unpin,
pub fn or<F>(self, other: F) -> Or<Self, F>ⓘ where
F: Future<Output = Self::Output>,
[src]
F: Future<Output = Self::Output>,
pub fn race<F>(self, other: F) -> Race<Self, F>ⓘ where
F: Future<Output = Self::Output>,
[src]
F: Future<Output = Self::Output>,
pub fn catch_unwind(self) -> CatchUnwind<Self>ⓘNotable traits for CatchUnwind<F>
impl<F> Future for CatchUnwind<F> where
F: UnwindSafe + Future, type Output = Result<<F as Future>::Output, Box<dyn Any + 'static + Send, Global>>;
where
Self: UnwindSafe,
[src]
Notable traits for CatchUnwind<F>
impl<F> Future for CatchUnwind<F> where
F: UnwindSafe + Future, type Output = Result<<F as Future>::Output, Box<dyn Any + 'static + Send, Global>>;
Self: UnwindSafe,
pub fn boxed<'a>(
self
) -> Pin<Box<dyn Future<Output = Self::Output> + 'a + Send, Global>>ⓘ where
Self: Send + 'a,
[src]
self
) -> Pin<Box<dyn Future<Output = Self::Output> + 'a + Send, Global>>ⓘ where
Self: Send + 'a,
pub fn boxed_local<'a>(
self
) -> Pin<Box<dyn Future<Output = Self::Output> + 'a, Global>>ⓘ where
Self: 'a,
[src]
self
) -> Pin<Box<dyn Future<Output = Self::Output> + 'a, Global>>ⓘ where
Self: 'a,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<F> IntoFuture for F where
F: Future,
[src]
F: Future,
type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?
pub fn into_future(self) -> <F as IntoFuture>::Future
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,