Struct msql_srv::Column [] [src]

pub struct Column {
    pub table: String,
    pub column: String,
    pub coltype: ColumnType,
    pub colflags: ColumnFlags,
}

Meta-information abot a single column, used either to describe a prepared statement parameter or an output column.

Fields

This column's associated table.

Note that this is technically the table's alias.

This column's name.

Note that this is technically the column's alias.

This column's type>

Any flags associated with this column.

Of particular interest are ColumnFlags::UNSIGNED_FLAG and ColumnFlags::NOT_NULL_FLAG.

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

impl PartialEq for Column
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Column
[src]

Auto Trait Implementations

impl Send for Column

impl Sync for Column