pub trait UpdateVTab<'vtab>: CreateVTab<'vtab> {
// Required methods
fn delete(&mut self, arg: ValueRef<'_>) -> Result<()>;
fn insert(&mut self, args: &Values<'_>) -> Result<i64>;
fn update(&mut self, args: &Values<'_>) -> Result<()>;
}
Expand description
Writable virtual table instance trait.
(See SQLite doc)
Required Methods§
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.