Trait wasmtime_wasi_http::bindings::sync::cli::stdout::Host

source ·
pub trait Host: Send {
    // Required method
    fn get_stdout(
        &mut self,
    ) -> Result<Resource<Box<dyn HostOutputStream>>, Error>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<_T> Host for &mut _T
where _T: Host + Send + ?Sized,

Implementors§

source§

impl<T> Host for WasiImpl<T>
where T: WasiView,