pub trait VTabModule: 'static {
type Table: VTable;
const VTAB_KIND: VTabKind;
const NAME: &'static str;
// Required method
fn create(args: &[Value]) -> Result<(String, Self::Table), ResultCode>;
}Required Associated Constants§
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".