pub enum FutureIncomingResponse {
Pending(AbortOnDropJoinHandle<Result<Result<IncomingResponse, ErrorCode>, Error>>),
Ready(Result<Result<IncomingResponse, ErrorCode>, Error>),
Consumed,
}
Expand description
The concrete type behind a wasi:http/types/future-incoming-response
resource.
Variants§
Pending(AbortOnDropJoinHandle<Result<Result<IncomingResponse, ErrorCode>, Error>>)
A pending response
Ready(Result<Result<IncomingResponse, ErrorCode>, Error>)
The response is ready.
An outer error will trap while the inner error gets returned to the guest.
Consumed
The response has been consumed.
Implementations§
source§impl HostFutureIncomingResponse
impl HostFutureIncomingResponse
sourcepub fn pending(
handle: AbortOnDropJoinHandle<Result<Result<IncomingResponse, ErrorCode>, Error>>,
) -> HostFutureIncomingResponse
pub fn pending( handle: AbortOnDropJoinHandle<Result<Result<IncomingResponse, ErrorCode>, Error>>, ) -> HostFutureIncomingResponse
Create a new HostFutureIncomingResponse
that is pending on the provided task handle.
sourcepub fn ready(
result: Result<Result<IncomingResponse, ErrorCode>, Error>,
) -> HostFutureIncomingResponse
pub fn ready( result: Result<Result<IncomingResponse, ErrorCode>, Error>, ) -> HostFutureIncomingResponse
Create a new HostFutureIncomingResponse
that is ready.
sourcepub fn unwrap_ready(self) -> Result<Result<IncomingResponse, ErrorCode>, Error>
pub fn unwrap_ready(self) -> Result<Result<IncomingResponse, ErrorCode>, Error>
Unwrap the response, panicking if it is not ready.
Trait Implementations§
source§impl Debug for HostFutureIncomingResponse
impl Debug for HostFutureIncomingResponse
Auto Trait Implementations§
impl Freeze for HostFutureIncomingResponse
impl !RefUnwindSafe for HostFutureIncomingResponse
impl Send for HostFutureIncomingResponse
impl Sync for HostFutureIncomingResponse
impl Unpin for HostFutureIncomingResponse
impl !UnwindSafe for HostFutureIncomingResponse
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self
file descriptor.source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self
file descriptor. Read moresource§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more