[][src]Struct diesel::sql_types::TinyInt

pub struct TinyInt;

The tiny integer SQL type.

This is only available on MySQL. Keep in mind that infer_schema! will see TINYINT(1) as Bool, not TinyInt.

ToSql impls

FromSql impls

Trait Implementations

impl FromSql<TinyInt, Mysql> for i8[src]

impl<'expr> AsExpression<TinyInt> for &'expr i8[src]

type Expression = Bound<TinyInt, Self>

The expression being returned

impl<'expr2, 'expr> AsExpression<TinyInt> for &'expr2 &'expr i8[src]

type Expression = Bound<TinyInt, Self>

The expression being returned

impl AsExpression<TinyInt> for i8[src]

type Expression = Bound<TinyInt, Self>

The expression being returned

impl QueryId for TinyInt[src]

type QueryId = TinyInt

A type which uniquely represents Self in a SQL query. Read more

impl ToSql<TinyInt, Mysql> for i8[src]

impl HasSqlType<TinyInt> for Mysql[src]

impl NotNull for TinyInt[src]

impl SingleValue for TinyInt[src]

impl Clone for TinyInt[src]

impl Copy for TinyInt[src]

impl Default for TinyInt[src]

impl Debug for TinyInt[src]

Auto Trait Implementations

impl Send for TinyInt

impl Sync for TinyInt

impl Unpin for TinyInt

impl UnwindSafe for TinyInt

impl RefUnwindSafe for TinyInt

Blanket Implementations

impl<T> IntoSql for T[src]

impl<T> IntoNullable for T where
    T: NotNull
[src]

type Nullable = Nullable<T>

The nullable representation of this type. Read more

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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