[][src]Enum barrel::types::BaseType

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

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(&'static str)

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

Trait Implementations

impl PartialEq<BaseType> for BaseType[src]

impl Clone for BaseType[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for BaseType[src]

Auto Trait Implementations

impl Send for BaseType

impl Sync for BaseType

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> IntoSql for T

fn into_sql<T>(self) -> Self::Expression where
    Self: AsExpression<T>, 

Convert self to an expression for Diesel's query builder. Read more

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
    &'a Self: AsExpression<T>, 

Convert &self to an expression for Diesel's query builder. Read more