Struct diesel::sql_types::Double[][src]

pub struct Double;

The double precision float SQL type.

ToSql impls

FromSql impls

Trait Implementations

impl Add for Double[src]

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

impl<'expr> AsExpression<Double> for &'expr f64[src]

type Expression = Bound<Double, Self>

The expression being returned

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

type Expression = Bound<Double, Self>

The expression being returned

impl AsExpression<Double> for f64[src]

type Expression = Bound<Double, Self>

The expression being returned

impl Clone for Double[src]

impl Copy for Double[src]

impl Debug for Double[src]

impl Default for Double[src]

impl Div for Double[src]

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

impl Foldable for Double[src]

type Sum = Nullable<Double>

The SQL type of sum(this_type)

type Avg = Nullable<Double>

The SQL type of avg(this_type)

impl<DB: Backend<RawValue = [u8]>> FromSql<Double, DB> for f64[src]

impl FromSql<Double, Sqlite> for f64[src]

impl HasSqlType<Double> for Sqlite[src]

impl HasSqlType<Double> for Mysql[src]

impl HasSqlType<Double> for Pg[src]

impl Mul for Double[src]

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

impl NotNull for Double[src]

impl QueryId for Double[src]

type QueryId = Double

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

impl SingleValue for Double[src]

impl SqlOrd for Double[src]

impl Sub for Double[src]

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

impl<DB: Backend> ToSql<Double, DB> for f64[src]

Auto Trait Implementations

impl RefUnwindSafe for Double

impl Send for Double

impl Sync for Double

impl Unpin for Double

impl UnwindSafe for Double

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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> IntoSql 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.