SQLiteColumnInfo

Trait SQLiteColumnInfo 

Source
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§

Provided Methods§

Source

fn foreign_key(&self) -> Option<&'static dyn SQLiteColumnInfo>

Returns the foreign key reference if this column has one

Trait Implementations§

Source§

impl Debug for dyn SQLiteColumnInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§