Struct diesel::mysql::Mysql [] [src]

pub struct Mysql;

The MySQL backend

Trait Implementations

impl HasSqlType<Bool> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Tinyint> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<SmallInt> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Integer> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<BigInt> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Float> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Double> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Numeric> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Text> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Binary> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Date> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Time> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl HasSqlType<Timestamp> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl Debug for Mysql
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for Mysql
[src]

impl Clone for Mysql
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Hash for Mysql
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for Mysql
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for Mysql
[src]

impl Backend for Mysql
[src]

The concrete QueryBuilder implementation for this backend.

The concrete BindCollector implementation for this backend. Read more

The raw representation of a database value given to FromSql. Read more

What byte order is used to transmit integers? Read more

impl TypeMetadata for Mysql
[src]

The actual type used to represent metadata. Read more

The type used for runtime lookup of metadata. Read more

impl SupportsDefaultKeyword for Mysql
[src]

impl UsesAnsiSavepointSyntax for Mysql
[src]

impl QueryBuilder<Mysql> for MysqlQueryBuilder
[src]

[src]

Add sql to the end of the query being constructed.

[src]

Quote identifier, and add it to the end of the query being constructed. Read more

[src]

Add a placeholder for a bind parameter to the end of the query being constructed. Read more

[src]

Returns the constructed SQL query.

impl ToSql<Datetime, Mysql> for MYSQL_TIME
[src]

[src]

See the trait documentation.

impl FromSql<Datetime, Mysql> for MYSQL_TIME
[src]

[src]

See the trait documentation.

impl ToSql<Timestamp, Mysql> for MYSQL_TIME
[src]

[src]

See the trait documentation.

impl FromSql<Timestamp, Mysql> for MYSQL_TIME
[src]

[src]

See the trait documentation.

impl ToSql<Time, Mysql> for MYSQL_TIME
[src]

[src]

See the trait documentation.

impl FromSql<Time, Mysql> for MYSQL_TIME
[src]

[src]

See the trait documentation.

impl ToSql<Date, Mysql> for MYSQL_TIME
[src]

[src]

See the trait documentation.

impl FromSql<Date, Mysql> for MYSQL_TIME
[src]

[src]

See the trait documentation.

impl ToSql<Datetime, Mysql> for NaiveDateTime
[src]

[src]

See the trait documentation.

impl FromSql<Datetime, Mysql> for NaiveDateTime
[src]

[src]

See the trait documentation.

impl ToSql<Timestamp, Mysql> for NaiveDateTime
[src]

[src]

See the trait documentation.

impl FromSql<Timestamp, Mysql> for NaiveDateTime
[src]

[src]

See the trait documentation.

impl ToSql<Time, Mysql> for NaiveTime
[src]

[src]

See the trait documentation.

impl FromSql<Time, Mysql> for NaiveTime
[src]

[src]

See the trait documentation.

impl ToSql<Date, Mysql> for NaiveDate
[src]

[src]

See the trait documentation.

impl FromSql<Date, Mysql> for NaiveDate
[src]

[src]

See the trait documentation.

impl ToSql<Numeric, Mysql> for BigDecimal
[src]

[src]

See the trait documentation.

impl FromSql<Numeric, Mysql> for BigDecimal
[src]

[src]

See the trait documentation.

impl HasSqlType<Datetime> for Mysql
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

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

[src]

See the trait documentation.

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

[src]

See the trait documentation.

impl ToSql<Unsigned<SmallInt>, Mysql> for u16
[src]

[src]

See the trait documentation.

impl FromSql<Unsigned<SmallInt>, Mysql> for u16
[src]

[src]

See the trait documentation.

impl ToSql<Unsigned<Integer>, Mysql> for u32
[src]

[src]

See the trait documentation.

impl FromSql<Unsigned<Integer>, Mysql> for u32
[src]

[src]

See the trait documentation.

impl ToSql<Unsigned<BigInt>, Mysql> for u64
[src]

[src]

See the trait documentation.

impl FromSql<Unsigned<BigInt>, Mysql> for u64
[src]

[src]

See the trait documentation.

impl ToSql<Bool, Mysql> for bool
[src]

[src]

See the trait documentation.

impl FromSql<Bool, Mysql> for bool
[src]

[src]

See the trait documentation.

impl<ST> HasSqlType<Unsigned<ST>> for Mysql where
    Mysql: HasSqlType<ST>, 
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

Auto Trait Implementations

impl Send for Mysql

impl Sync for Mysql