Skip to main content

WasiSqlView

Trait WasiSqlView 

Source
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§

Source

fn sql(&mut self) -> WasiSqlCtxView<'_>

Return a WasiSqlCtxView from mutable reference to self.

Implementors§