[][src]Enum oxidizer::types::BaseType

pub enum BaseType {
    Text,
    Varchar(usize),
    Primary,
    Integer,
    Float,
    Double,
    UUID,
    Boolean,
    Json,
    Date,
    Binary,
    Foreign(Option<String>, StringWrapVec<String>),
    Custom(&'static str),
    Array(Box<BaseType>),
    Index(Vec<String>),
}

Core type enum, describing the basic type

Variants

Text

Strings

Varchar(usize)

Like a String but worse

Primary

Primary key (utility for incrementing integer – postgres supports this, we just mirror it)

Integer

Simple integer

Float

Floating point number

Double

Like Float but ~ ~ d o u b l e p r e c i s i o n ~ ~

UUID

A unique identifier type

Boolean

True or False

Json

Json encoded data

Date

Date And Time

Binary

Foreign key to other table

Custom(&'static str)

I have no idea what you are – but I like it

Array(Box<BaseType>)

Any of the above, but many of them

Index(Vec<String>)

Indexing over multiple columns

Trait Implementations

impl Clone for BaseType[src]

impl Debug for BaseType[src]

impl PartialEq<BaseType> for BaseType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,