pub trait Module<'vtab, T: VTab<'vtab> + 'vtab>: Sealed<'vtab, T>where
Self: Sized,{ }Expand description
A virtual table module.
You generally do not need to use this trait directly, see sqlite_ext_vtab for details on how to use this.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.