pub trait SQLTableInfo:
Any
+ Send
+ Sync {
// Required methods
fn name(&self) -> &str;
fn type(&self) -> SQLSchemaType;
fn columns(&self) -> Box<[&'static dyn SQLColumnInfo]>;
fn without_rowid(&self) -> bool;
fn strict(&self) -> bool;
}