Trait wasmtime_wasi::bindings::sync::io::streams::Host

source ·
pub trait Host: HostInputStream + HostOutputStream {
    // Required method
    fn convert_stream_error(&mut self, err: StreamError) -> Result<StreamError>;
}

Required Methods§

Implementations on Foreign Types§

source§

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

Implementors§

source§

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