Struct sqlite_parser::Column [−][src]
pub struct Column {
pub id: i32,
pub name: String,
pub the_type: Type,
pub nullable: bool,
pub part_of_pk: bool,
}Represents a column in SQLite
Fields
id: i32The id of the column (starts with 0 and is incremented for each column)
name: StringThe name of the column
the_type: TypeThe type of the column
nullable: boolChecks if the column is nullable
part_of_pk: boolChecks if the column is part of the primary key
Trait Implementations
impl StructuralPartialEq for Column[src]
impl StructuralPartialEq for Column[src]Auto Trait Implementations
impl RefUnwindSafe for Column
impl RefUnwindSafe for Columnimpl UnwindSafe for Column
impl UnwindSafe for Column