pub trait SQLiteTableInfo: SQLTableInfo {
// Required methods
fn type(&self) -> &SQLiteSchemaType;
fn without_rowid(&self) -> bool;
fn strict(&self) -> bool;
fn sqlite_columns(&self) -> &'static [&'static dyn SQLiteColumnInfo];
fn sqlite_dependencies(&self) -> &'static [&'static dyn SQLiteTableInfo];
}Required Methods§
fn type(&self) -> &SQLiteSchemaType
fn without_rowid(&self) -> bool
fn strict(&self) -> bool
fn sqlite_columns(&self) -> &'static [&'static dyn SQLiteColumnInfo]
Sourcefn sqlite_dependencies(&self) -> &'static [&'static dyn SQLiteTableInfo]
fn sqlite_dependencies(&self) -> &'static [&'static dyn SQLiteTableInfo]
Returns all tables this table depends on via foreign keys