Struct diesel::sql_types::Unsigned

source ·
pub struct Unsigned<ST: 'static>(/* private fields */);
Available on crate feature mysql_backend only.
Expand description

Represents the MySQL unsigned type.

Trait Implementations§

source§

impl<T> Add for Unsigned<T>
where T: Add,

§

type Rhs = Unsigned<<T as Add>::Rhs>

The SQL type which can be added to this one
§

type Output = Unsigned<<T as Add>::Output>

The SQL type of the result of adding Rhs to Self
source§

impl<'__expr, '__expr2> AsExpression<Unsigned<BigInt>> for &'__expr2 &'__expr u64

§

type Expression = Bound<Unsigned<BigInt>, &'__expr2 &'__expr u64>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Unsigned<BigInt>> for &'__expr u64

§

type Expression = Bound<Unsigned<BigInt>, &'__expr u64>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Unsigned<BigInt>> for u64

§

type Expression = Bound<Unsigned<BigInt>, u64>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Unsigned<Integer>> for &'__expr2 &'__expr u32

§

type Expression = Bound<Unsigned<Integer>, &'__expr2 &'__expr u32>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Unsigned<Integer>> for &'__expr u32

§

type Expression = Bound<Unsigned<Integer>, &'__expr u32>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Unsigned<Integer>> for u32

§

type Expression = Bound<Unsigned<Integer>, u32>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Unsigned<SmallInt>> for &'__expr2 &'__expr u16

§

type Expression = Bound<Unsigned<SmallInt>, &'__expr2 &'__expr u16>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Unsigned<SmallInt>> for &'__expr u16

§

type Expression = Bound<Unsigned<SmallInt>, &'__expr u16>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Unsigned<SmallInt>> for u16

§

type Expression = Bound<Unsigned<SmallInt>, u16>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Unsigned<TinyInt>> for &'__expr2 &'__expr u8

§

type Expression = Bound<Unsigned<TinyInt>, &'__expr2 &'__expr u8>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Unsigned<TinyInt>> for &'__expr u8

§

type Expression = Bound<Unsigned<TinyInt>, &'__expr u8>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Unsigned<TinyInt>> for u8

§

type Expression = Bound<Unsigned<TinyInt>, u8>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<ST: Clone + 'static> Clone for Unsigned<ST>

source§

fn clone(&self) -> Unsigned<ST>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<ST: Debug + 'static> Debug for Unsigned<ST>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<ST: Default + 'static> Default for Unsigned<ST>

source§

fn default() -> Unsigned<ST>

Returns the “default value” for a type. Read more
source§

impl<T> Div for Unsigned<T>
where T: Div,

§

type Rhs = Unsigned<<T as Div>::Rhs>

The SQL type which this one can be divided by
§

type Output = Unsigned<<T as Div>::Output>

The SQL type of the result of dividing Self by Rhs
source§

impl Foldable for Unsigned<BigInt>

§

type Sum = Nullable<Numeric>

The SQL type of sum(this_type)
§

type Avg = Nullable<Numeric>

The SQL type of avg(this_type)
source§

impl Foldable for Unsigned<Integer>

§

type Sum = Nullable<Unsigned<BigInt>>

The SQL type of sum(this_type)
§

type Avg = Nullable<Numeric>

The SQL type of avg(this_type)
source§

impl Foldable for Unsigned<SmallInt>

§

type Sum = Nullable<Unsigned<BigInt>>

The SQL type of sum(this_type)
§

type Avg = Nullable<Numeric>

The SQL type of avg(this_type)
source§

impl FromSql<Unsigned<BigInt>, Mysql> for u64

source§

fn from_sql(bytes: MysqlValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Unsigned<Integer>, Mysql> for u32

source§

fn from_sql(bytes: MysqlValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Unsigned<SmallInt>, Mysql> for u16

source§

fn from_sql(bytes: MysqlValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Unsigned<TinyInt>, Mysql> for u8

source§

fn from_sql(bytes: MysqlValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl HasSqlType<Unsigned<BigInt>> for Mysql

source§

fn metadata(_lookup: &mut ()) -> MysqlType

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Unsigned<Integer>> for Mysql

source§

fn metadata(_lookup: &mut ()) -> MysqlType

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Unsigned<SmallInt>> for Mysql

source§

fn metadata(_lookup: &mut ()) -> MysqlType

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Unsigned<TinyInt>> for Mysql

source§

fn metadata(_lookup: &mut ()) -> MysqlType

Fetch the metadata for the given type Read more
source§

impl<T> Mul for Unsigned<T>
where T: Mul,

§

type Rhs = Unsigned<<T as Mul>::Rhs>

The SQL type which this can be multiplied by
§

type Output = Unsigned<<T as Mul>::Output>

The SQL type of the result of multiplying Self by Rhs
source§

impl<ST: 'static + QueryId> QueryId for Unsigned<ST>

§

type QueryId = Unsigned<<ST as QueryId>::QueryId>

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

const HAS_STATIC_QUERY_ID: bool = _

Can the SQL generated by Self be uniquely identified by its type? Read more
source§

fn query_id() -> Option<TypeId>

Returns the type id of Self::QueryId if Self::HAS_STATIC_QUERY_ID. Returns None otherwise. Read more
source§

impl<ST: 'static> SqlType for Unsigned<ST>

§

type IsNull = NotNull

Is this type nullable? Read more
source§

impl<T> Sub for Unsigned<T>
where T: Sub,

§

type Rhs = Unsigned<<T as Sub>::Rhs>

The SQL type which can be subtracted from this one
§

type Output = Unsigned<<T as Sub>::Output>

The SQL type of the result of subtracting Rhs from Self
source§

impl ToSql<Unsigned<BigInt>, Mysql> for u64

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Mysql>) -> Result

See the trait documentation.
source§

impl ToSql<Unsigned<Integer>, Mysql> for u32

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Mysql>) -> Result

See the trait documentation.
source§

impl ToSql<Unsigned<SmallInt>, Mysql> for u16

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Mysql>) -> Result

See the trait documentation.
source§

impl ToSql<Unsigned<TinyInt>, Mysql> for u8

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Mysql>) -> Result

See the trait documentation.
source§

impl<ST: Copy + 'static> Copy for Unsigned<ST>

source§

impl<ST: 'static> SingleValue for Unsigned<ST>

source§

impl SqlOrd for Unsigned<BigInt>

source§

impl SqlOrd for Unsigned<Integer>

source§

impl SqlOrd for Unsigned<SmallInt>

Auto Trait Implementations§

§

impl<ST> Freeze for Unsigned<ST>
where ST: Freeze,

§

impl<ST> RefUnwindSafe for Unsigned<ST>
where ST: RefUnwindSafe,

§

impl<ST> Send for Unsigned<ST>
where ST: Send,

§

impl<ST> Sync for Unsigned<ST>
where ST: Sync,

§

impl<ST> Unpin for Unsigned<ST>
where ST: Unpin,

§

impl<ST> UnwindSafe for Unsigned<ST>
where ST: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<ST, U, DB> CompatibleType<U, DB> for ST
where DB: Backend, ST: SqlType + SingleValue, U: FromSqlRow<ST, DB>,

§

type SqlType = ST

Available on crate feature i-implement-a-third-party-backend-and-opt-into-breaking-changes only.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoNotNullable for T
where T: SqlType<IsNull = NotNull>,

§

type NotNullable = T

The not nullable representation of this type. Read more
source§

impl<T> IntoNullable for T
where T: SqlType<IsNull = NotNull> + SingleValue,

§

type Nullable = Nullable<T>

The nullable representation of this type. Read more
source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> AsExprOf<Self, T>

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<ST> TypedExpressionType for ST
where ST: SingleValue,