pub trait WasiCliView: Send {
// Required method
fn cli(&mut self) -> WasiCliCtxView<'_>;
}Expand description
Provides a “view” of wasi:cli-related context used to implement host
traits.
Required Methods§
fn cli(&mut self) -> WasiCliCtxView<'_>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".