Trait wasmtime_wasi::preview2::TablePollableExt
source · pub trait TablePollableExt {
// Required methods
fn push_host_pollable(&mut self, p: HostPollable) -> Result<u32, TableError>;
fn get_host_pollable_mut(
&mut self,
fd: u32
) -> Result<&mut HostPollable, TableError>;
fn delete_host_pollable(
&mut self,
fd: u32
) -> Result<HostPollable, TableError>;
}