pub struct TinyInt;
Expand description
The tiny integer SQL type.
This is only available on MySQL.
Keep in mind that diesel print-schema
will see TINYINT(1)
as Bool
,
not TinyInt
.
ToSql
impls
FromSql
impls
Trait Implementations§
source§impl<'expr> AsExpression<TinyInt> for &'expr i8
impl<'expr> AsExpression<TinyInt> for &'expr i8
§type Expression = Bound<TinyInt, &'expr i8>
type Expression = Bound<TinyInt, &'expr i8>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr2, 'expr> AsExpression<TinyInt> for &'expr2 &'expr i8
impl<'expr2, 'expr> AsExpression<TinyInt> for &'expr2 &'expr i8
§type Expression = Bound<TinyInt, &'expr2 &'expr i8>
type Expression = Bound<TinyInt, &'expr2 &'expr i8>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<TinyInt> for i8
impl AsExpression<TinyInt> for i8
§type Expression = Bound<TinyInt, i8>
type Expression = Bound<TinyInt, i8>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl HasSqlType<TinyInt> for Mysql
impl HasSqlType<TinyInt> for Mysql
source§impl QueryId for TinyInt
impl QueryId for TinyInt
source§const HAS_STATIC_QUERY_ID: bool = true
const HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by
Self
be uniquely identified by its type? Read moreimpl Copy for TinyInt
impl SingleValue for TinyInt
Auto Trait Implementations§
impl RefUnwindSafe for TinyInt
impl Send for TinyInt
impl Sync for TinyInt
impl Unpin for TinyInt
impl UnwindSafe for TinyInt
Blanket Implementations§
source§impl<T> IntoNotNullable for Twhere
T: SqlType<IsNull = NotNull>,
impl<T> IntoNotNullable for Twhere T: SqlType<IsNull = NotNull>,
§type NotNullable = T
type NotNullable = T
The not nullable representation of this type. Read more
source§impl<T> IntoNullable for Twhere
T: SqlType<IsNull = NotNull> + SingleValue,
impl<T> IntoNullable for Twhere T: SqlType<IsNull = NotNull> + SingleValue,
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> AsExprOf<Self, T>where
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
fn into_sql<T>(self) -> AsExprOf<Self, T>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,
Convert
self
to an expression for Diesel’s query builder. Read moresource§fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where
&'a Self: AsExpression<T>,
T: SqlType + TypedExpressionType,
fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,
Convert
&self
to an expression for Diesel’s query builder. Read more