Enum wasmtime_wasi::preview2::HostPollable
source · pub enum HostPollable {
TableEntry {
index: u32,
make_future: MakeFuture,
},
Closure(ClosureFuture),
}
Expand description
A host representation of the wasi:poll/poll.pollable
resource.
A pollable is not the same thing as a Rust Future: the same pollable may be used to repeatedly check for readiness of a given condition, e.g. if a stream is readable or writable. So, rather than containing a Future, which can only become Ready once, a HostPollable contains a way to create a Future in each call to poll_oneoff.
Variants§
TableEntry
Create a Future by calling a fn on another resource in the table. This indirection means the created Future can use a mut borrow of another resource in the Table (e.g. a stream)
Closure(ClosureFuture)
Create a future by calling an owned, static closure. This is used for pollables which do not share state with another resource in the Table (e.g. a timer)
Auto Trait Implementations§
impl !RefUnwindSafe for HostPollable
impl Send for HostPollable
impl Sync for HostPollable
impl Unpin for HostPollable
impl !UnwindSafe for HostPollable
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 more