wasmtime_wasi::bindings::cli::stderr

Trait Host

Source
pub trait Host: Send + Send {
    // Required method
    fn get_stderr(&mut self) -> Result<Resource<OutputStream>>;
}

Required Methods§

Source

fn get_stderr(&mut self) -> Result<Resource<OutputStream>>

Implementations on Foreign Types§

Source§

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

Source§

fn get_stderr(&mut self) -> Result<Resource<OutputStream>>

Implementors§

Source§

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