[][src]Struct fastly::request::PendingRequestHandle

#[repr(transparent)]pub struct PendingRequestHandle { /* fields omitted */ }

A handle to a pending asynchronous request returned by RequestHandle::send_async().

A handle can be evaluated using PendingRequestHandle::poll(), PendingRequestHandle::wait(), or select_handles. It can also be discarded if the request was sent for effects it might have, and the response is unimportant.

Methods

impl PendingRequestHandle[src]

pub fn poll(self) -> PollHandleResult[src]

Try to get the result of a pending request without blocking.

This function returns immediately with a PollHandleResult; if you want to block until a result is ready, use PendingRequestHandle::wait().

pub fn wait(self) -> Result<(ResponseHandle, BodyHandle), Error>[src]

Block until the result of a pending request is ready.

If you want check whether the result is ready without blocking, use PendingRequestHandle::poll().

Trait Implementations

impl Debug for PendingRequestHandle[src]

impl Eq for PendingRequestHandle[src]

impl From<PendingRequest> for PendingRequestHandle[src]

impl From<PendingRequestHandle> for PendingRequest[src]

impl Hash for PendingRequestHandle[src]

impl PartialEq<PendingRequestHandle> for PendingRequestHandle[src]

impl StructuralEq for PendingRequestHandle[src]

impl StructuralPartialEq for PendingRequestHandle[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.