Struct vervolg::schema::Column [] [src]

pub struct Column {
    pub name: String,
    pub not_null: bool,
    pub primary_key: bool,
    pub data_type: DataType,
}

Description of a column with a data set

Fields

the name of the column

if true, the value is required

if true, the column is part of the primary key

the type of the column

Trait Implementations

impl Debug for Column
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Column
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Column

impl Sync for Column