Struct futures_lite::io::ReadToStringFuture [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct ReadToStringFuture<'a, R: Unpin + ?Sized> { /* fields omitted */ }
Expand description
Future for the AsyncReadExt::read_to_string() method.
Trait Implementations
impl<R: Unpin + ?Sized> Unpin for ReadToStringFuture<'_, R>[src]
Auto Trait Implementations
impl<'a, R: ?Sized> RefUnwindSafe for ReadToStringFuture<'a, R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<'a, R: ?Sized> Send for ReadToStringFuture<'a, R> where
R: Send,
R: Send,
impl<'a, R: ?Sized> Sync for ReadToStringFuture<'a, R> where
R: Sync,
R: Sync,
impl<'a, R> !UnwindSafe for ReadToStringFuture<'a, R>
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
impl<F> FutureExt for F where
F: Future + ?Sized, [src]
impl<F> FutureExt for F where
F: Future + ?Sized, [src]fn poll(&mut self, cx: &mut Context<'_>) -> Poll<Self::Output> where
Self: Unpin, [src]
fn poll(&mut self, cx: &mut Context<'_>) -> Poll<Self::Output> where
Self: Unpin, [src]A convenience for calling Future::poll() on !Unpin types.
fn or<F>(self, other: F) -> Or<Self, F>ⓘ where
Self: Sized,
F: Future<Output = Self::Output>, [src]
fn or<F>(self, other: F) -> Or<Self, F>ⓘ where
Self: Sized,
F: Future<Output = Self::Output>, [src]Returns the result of self or other future, preferring self if both are ready. Read more
fn race<F>(self, other: F) -> Race<Self, F>ⓘ where
Self: Sized,
F: Future<Output = Self::Output>, [src]
fn race<F>(self, other: F) -> Race<Self, F>ⓘ where
Self: Sized,
F: Future<Output = Self::Output>, [src]Returns the result of self or other future, with no preference if both are ready. Read more
fn catch_unwind(self) -> CatchUnwind<Self>ⓘNotable traits for CatchUnwind<F>
impl<F: Future + UnwindSafe> Future for CatchUnwind<F> type Output = Result<F::Output, Box<dyn Any + Send>>; where
Self: Sized + UnwindSafe, [src]
fn catch_unwind(self) -> CatchUnwind<Self>ⓘNotable traits for CatchUnwind<F>
impl<F: Future + UnwindSafe> Future for CatchUnwind<F> type Output = Result<F::Output, Box<dyn Any + Send>>; where
Self: Sized + UnwindSafe, [src]Catches panics while polling the future. Read more
impl<F> IntoFuture for F where
F: Future, [src]
impl<F> IntoFuture for F where
F: Future, [src]type Output = <F as Future>::Output
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
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]
pub fn into_future(self) -> <F as IntoFuture>::Future[src]🔬 This is a nightly-only experimental API. (
into_future)Creates a future from a value.