Trait wasmtime_wasi::bindings::sync::sockets::network::Host

source ·
pub trait Host: Send + HostNetwork {
    // Required method
    fn convert_error_code(&mut self, err: SocketError) -> Result<ErrorCode>;
}

Required Methods§

Implementations on Foreign Types§

source§

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

Implementors§

source§

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