pub trait WasiSqlView: Send {
// Required method
fn sql(&mut self) -> WasiSqlCtxView<'_>;
}Expand description
A trait which provides internal WASI SQL state.
This is implemented by the T in Linker<T> — a single type shared across
all WASI components for the runtime build.
Required Methods§
Sourcefn sql(&mut self) -> WasiSqlCtxView<'_>
fn sql(&mut self) -> WasiSqlCtxView<'_>
Return a WasiSqlCtxView from mutable reference to self.