Struct sqlx::MySql

source ·
pub struct MySql;
Available on crate feature mysql only.
Expand description

MySQL database driver.

Trait Implementations§

source§

impl Database for MySql

§

type Connection = MySqlConnection

The concrete Connection implementation for this database.
§

type TransactionManager = MySqlTransactionManager

The concrete TransactionManager implementation for this database.
§

type Row = MySqlRow

The concrete Row implementation for this database.
§

type QueryResult = MySqlQueryResult

The concrete QueryResult implementation for this database.
§

type Column = MySqlColumn

The concrete Column implementation for this database.
§

type TypeInfo = MySqlTypeInfo

The concrete TypeInfo implementation for this database.
§

type Value = MySqlValue

The concrete type used to hold an owned copy of the not-yet-decoded value that was received from the database.
source§

impl Debug for MySql

source§

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

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

impl Decode<'_, MySql> for BigDecimal

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<BigDecimal, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for Decimal

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<Decimal, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for Hyphenated

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<Hyphenated, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for String

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<String, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for Uuid

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<Uuid, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for Vec<u8, Global>

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<Vec<u8, Global>, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for bool

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<bool, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for f32

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<f32, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for f64

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<f64, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for i16

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<i16, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for i32

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<i32, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for i64

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<i64, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for i8

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<i8, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for u16

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<u16, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for u32

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<u32, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for u64

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<u64, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Decode<'_, MySql> for u8

source§

fn decode( value: MySqlValueRef<'_> ) -> Result<u8, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for &'r [u8]

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<&'r [u8], Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for &'r str

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<&'r str, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for Cow<'r, str>

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<Cow<'r, str>, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for Date

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<Date, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for DateTime<Local>

Note: assumes the connection’s time_zone is set to +00:00 (UTC).

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<DateTime<Local>, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for DateTime<Utc>

Note: assumes the connection’s time_zone is set to +00:00 (UTC).

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<DateTime<Utc>, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r, T> Decode<'r, MySql> for Json<T>where T: 'r + Deserialize<'r>,

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<Json<T>, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for NaiveDate

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<NaiveDate, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for NaiveDateTime

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<NaiveDateTime, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for NaiveTime

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<NaiveTime, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for OffsetDateTime

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<OffsetDateTime, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for PrimitiveDateTime

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<PrimitiveDateTime, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl<'r> Decode<'r, MySql> for Time

source§

fn decode( value: MySqlValueRef<'r> ) -> Result<Time, Box<dyn Error + Sync + Send + 'static, Global>>

Decode a new value of this type using a raw value from the database.
source§

impl Encode<'_, MySql> for &[u8]

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for &str

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for BigDecimal

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for Cow<'_, str>

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for Date

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn size_hint(&self) -> usize

source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

impl Encode<'_, MySql> for DateTime<Local>

Note: assumes the connection’s time_zone is set to +00:00 (UTC).

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for DateTime<Utc>

Note: assumes the connection’s time_zone is set to +00:00 (UTC).

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for Decimal

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for Hyphenated

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl<T> Encode<'_, MySql> for Json<T>where T: Serialize,

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for NaiveDate

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn size_hint(&self) -> usize

source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

impl Encode<'_, MySql> for NaiveDateTime

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn size_hint(&self) -> usize

source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

impl Encode<'_, MySql> for NaiveTime

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn size_hint(&self) -> usize

source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

impl Encode<'_, MySql> for OffsetDateTime

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for PrimitiveDateTime

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn size_hint(&self) -> usize

source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

impl Encode<'_, MySql> for String

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for Time

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn size_hint(&self) -> usize

source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

impl Encode<'_, MySql> for Uuid

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for Vec<u8, Global>

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for bool

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for f32

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for f64

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for i16

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for i32

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for i64

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for i8

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for u16

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for u32

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for u64

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl Encode<'_, MySql> for u8

source§

fn encode_by_ref(&self, buf: &mut Vec<u8, Global>) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere Self: Sized,

Writes the value of self into buf in the expected format for the database.
source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

source§

fn size_hint(&self) -> usize

source§

impl<'q, T> Encode<'q, MySql> for Option<T>where T: Encode<'q, MySql> + Type<MySql> + 'q,

source§

fn produces(&self) -> Option<<MySql as Database>::TypeInfo>

source§

fn encode(self, buf: &mut <MySql as HasArguments<'q>>::ArgumentBuffer) -> IsNull

Writes the value of self into buf in the expected format for the database.
source§

fn encode_by_ref( &self, buf: &mut <MySql as HasArguments<'q>>::ArgumentBuffer ) -> IsNull

Writes the value of self into buf without moving self. Read more
source§

fn size_hint(&self) -> usize

source§

impl HasArguments<'_> for MySql

§

type Database = MySql

§

type Arguments = MySqlArguments

The concrete Arguments implementation for this database.
§

type ArgumentBuffer = Vec<u8, Global>

The concrete type used as a buffer for arguments while encoding.
source§

impl<'q> HasStatement<'q> for MySql

§

type Database = MySql

§

type Statement = MySqlStatement<'q>

The concrete Statement implementation for this database.
source§

impl<'r> HasValueRef<'r> for MySql

§

type Database = MySql

§

type ValueRef = MySqlValueRef<'r>

The concrete type used to hold a reference to the not-yet-decoded value that has just been received from the database.
source§

impl MigrateDatabase for MySql

source§

fn create_database( url: &str ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send, Global>>

source§

fn database_exists( url: &str ) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send, Global>>

source§

fn drop_database( url: &str ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send, Global>>

source§

impl TestSupport for MySql

source§

fn test_context( args: &TestArgs ) -> Pin<Box<dyn Future<Output = Result<TestContext<MySql>, Error>> + Send, Global>>

Get parameters to construct a Pool suitable for testing. Read more
source§

fn cleanup_test( db_name: &str ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send, Global>>

source§

fn cleanup_test_dbs( ) -> Pin<Box<dyn Future<Output = Result<Option<usize>, Error>> + Send + 'static, Global>>

Cleanup any test databases that are no longer in-use. Read more
source§

fn snapshot( _conn: &mut <MySql as Database>::Connection ) -> Pin<Box<dyn Future<Output = Result<FixtureSnapshot<MySql>, Error>> + Send, Global>>

Take a snapshot of the current state of the database (data only). Read more
source§

impl Type<MySql> for [u8]

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for BigDecimal

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for Cow<'_, str>

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for Date

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for DateTime<Local>

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for DateTime<Utc>

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for Decimal

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for Hyphenated

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl<T> Type<MySql> for Json<T>

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for NaiveDate

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for NaiveDateTime

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for NaiveTime

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for OffsetDateTime

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for PrimitiveDateTime

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for String

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for Time

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for Uuid

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for Vec<u8, Global>

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for bool

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for f32

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for f64

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for i16

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for i32

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for i64

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for i8

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for str

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for u16

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for u32

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for u64

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl Type<MySql> for u8

source§

fn type_info() -> MySqlTypeInfo

Returns the canonical SQL type for this Rust type. Read more
source§

fn compatible(ty: &MySqlTypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
source§

impl HasStatementCache for MySql

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> Same<T> for T

§

type Output = T

Should always be Self
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.
§

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

§

fn vzip(self) -> V