pub trait RenameVTab<'vtab>: VTab<'vtab> {
// Required method
fn rename(&'vtab self, name: &str) -> Result<()>;
}Expand description
A virtual table that supports ALTER TABLE RENAME.
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.