Enum atter::SqliteDataType [] [src]

pub enum SqliteDataType {
    Integer,
    Text,
}

A sqlite data type

Variants

An INTEGER data type.

A TEXT data type.

Trait Implementations

impl Clone for SqliteDataType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SqliteDataType
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for SqliteDataType
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Default for SqliteDataType
[src]

[src]

Returns the "default value" for a type. Read more

impl Display for SqliteDataType
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations