pub trait SQLiteColumnInfo: SQLColumnInfo {
// Required methods
fn is_autoincrement(&self) -> bool;
fn table(&self) -> &dyn SQLiteTableInfo;
// Provided method
fn foreign_key(&self) -> Option<&'static dyn SQLiteColumnInfo> { ... }
}Required Methods§
fn is_autoincrement(&self) -> bool
fn table(&self) -> &dyn SQLiteTableInfo
Provided Methods§
Sourcefn foreign_key(&self) -> Option<&'static dyn SQLiteColumnInfo>
fn foreign_key(&self) -> Option<&'static dyn SQLiteColumnInfo>
Returns the foreign key reference if this column has one