Enum vervolg::types::DataType [] [src]

pub enum DataType {
    Generic,
    Varchar,
    Numeric,
    Date,
    Time,
    Timestamp,
    Geometry,
}

The types supported by this engine

Variants

Generic describes values without specific type constraints; will be parsed and converted on demand

Character strings of varying length

Numeric values allowing for arithmetic operations; we'll add specializatiions later

Date values

Time values

Timestamp values combining date and time information

Geospatial data type

Trait Implementations

impl Debug for DataType
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for DataType
[src]

impl Clone for DataType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for DataType
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for DataType

impl Sync for DataType