Struct breadx::display::SendRequestFuture [−][src]
pub struct SendRequestFuture<'a, D: ?Sized, R> { /* fields omitted */ }
Expand description
The future returned by the AsyncDisplayExt::send_request_async method. It is a basic wrapper around
sending the raw request.
Trait Implementations
type Output = Result<RequestCookie<R>>
type Output = Result<RequestCookie<R>>The type of value produced on completion.
Auto Trait Implementations
impl<'a, D: ?Sized, R> RefUnwindSafe for SendRequestFuture<'a, D, R> where
D: RefUnwindSafe,
R: RefUnwindSafe, impl<'a, D: ?Sized, R> Send for SendRequestFuture<'a, D, R> where
D: Send,
R: Send, impl<'a, D: ?Sized, R> Sync for SendRequestFuture<'a, D, R> where
D: Sync,
R: Sync, impl<'a, D: ?Sized, R> Unpin for SendRequestFuture<'a, D, R> where
R: Unpin, impl<'a, D, R> !UnwindSafe for SendRequestFuture<'a, D, R>Blanket Implementations
Mutably borrows from an owned value. Read more
A convenience for calling Future::poll() on !Unpin types.
Returns the result of self or other future, preferring self if both are ready. Read more
Returns the result of self or other future, with no preference if both are ready. Read more
Catches panics while polling the future. Read more
Boxes the future and changes its type to dyn Future + Send + 'a. Read more
🔬 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?
🔬 This is a nightly-only experimental API. (
into_future)Creates a future from a value.