Struct diesel::sql_types::Double

source ·
pub struct Double;
Expand description

The double precision float SQL type.

ToSql impls

FromSql impls

Trait Implementations§

source§

impl Add for Double

§

type Rhs = Double

The SQL type which can be added to this one
§

type Output = Double

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

impl<'expr> AsExpression<Double> for &'expr f64

§

type Expression = Bound<Double, &'expr f64>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'expr2, 'expr> AsExpression<Double> for &'expr2 &'expr f64

§

type Expression = Bound<Double, &'expr2 &'expr f64>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Double> for f64

§

type Expression = Bound<Double, f64>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl Clone for Double

source§

fn clone(&self) -> Double

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 Debug for Double

source§

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

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

impl Default for Double

source§

fn default() -> Double

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

impl Div for Double

§

type Rhs = Double

The SQL type which this one can be divided by
§

type Output = Double

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

impl Foldable for Double

§

type Sum = Nullable<Double>

The SQL type of sum(this_type)
§

type Avg = Nullable<Double>

The SQL type of avg(this_type)
source§

impl Mul for Double

§

type Rhs = Double

The SQL type which this can be multiplied by
§

type Output = Double

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

impl QueryId for Double

§

type QueryId = Double

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

const HAS_STATIC_QUERY_ID: bool = true

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 SqlType for Double

§

type IsNull = NotNull

Is this type nullable? Read more
source§

impl Sub for Double

§

type Rhs = Double

The SQL type which can be subtracted from this one
§

type Output = Double

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

impl Copy for Double

source§

impl SingleValue for Double

source§

impl SqlOrd for Double

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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 Twhere T: SqlType<IsNull = NotNull>,

§

type NotNullable = T

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

impl<T> IntoNullable for Twhere 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>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,

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

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
source§

impl<T> ToOwned for Twhere 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 Twhere 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 Twhere 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<ST> TypedExpressionType for STwhere ST: SingleValue,