Enum msi::ColumnType [] [src]

pub enum ColumnType {
    Int16,
    Int32,
    Str(usize),
}

A database column data type.

Variants

A 16-bit integer.

A 32-bit integer.

A string, with the specified maximum length (or zero for no max).

Trait Implementations

impl Clone for ColumnType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ColumnType
[src]

impl Debug for ColumnType
[src]

Formats the value using the given formatter.

impl Eq for ColumnType
[src]

impl PartialEq for ColumnType
[src]

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

This method tests for !=.

impl Display for ColumnType
[src]

Formats the value using the given formatter. Read more