Trait wasmtime_wasi::bindings::sync::cli::stdin::Host

source ·
pub trait Host: Send {
    // Required method
    fn get_stdin(&mut self) -> Result<Resource<InputStream>>;
}

Required Methods§

source

fn get_stdin(&mut self) -> Result<Resource<InputStream>>

Implementations on Foreign Types§

source§

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

source§

fn get_stdin(&mut self) -> Result<Resource<InputStream>>

Implementors§

source§

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