Struct sqlite_parser::Table [−][src]
pub struct Table {
pub table_name: String,
pub columns: Vec<Column>,
pub foreign_keys: Vec<ForeignKey>,
}Represents a table in SQLite
Fields
table_name: StringThe table name
columns: Vec<Column>The columns of the table
foreign_keys: Vec<ForeignKey>The foreign keys of the table
Implementations
Trait Implementations
impl StructuralPartialEq for Table[src]
impl StructuralPartialEq for Table[src]Auto Trait Implementations
impl RefUnwindSafe for Table
impl RefUnwindSafe for Tableimpl UnwindSafe for Table
impl UnwindSafe for Table