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