Struct vervolg::schema::Table [] [src]

pub struct Table {
    pub name: String,
    pub rows: RowSet,
    pub primary_key: Vec<String>,
}

Description of a table within the database

Fields

the name of the table

description of the data rows that are stored in this table

the names of the columns that are part of the primary key

Trait Implementations

impl Debug for Table
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Table

impl Sync for Table