style: rustfmt

This commit is contained in:
Ryan Leckey 2021-03-27 17:12:03 -07:00
parent 5c9ab18a74
commit 949b644503
2 changed files with 5 additions and 6 deletions

View File

@ -26,9 +26,9 @@ pub trait ConnectOptions:
#[cfg(feature = "async")]
#[inline]
fn connect<C, Rt>(&self) -> futures_util::future::BoxFuture<'_, crate::Result<C>>
where
C: crate::Connect<Rt, Options = Self> + Sized,
Rt: crate::Async,
where
C: crate::Connect<Rt, Options = Self> + Sized,
Rt: crate::Async,
{
C::connect_with(self)
}

View File

@ -8,7 +8,6 @@ use crate::DefaultRuntime;
pub type MySqlConnection<Rt = DefaultRuntime> = sqlx_mysql::MySqlConnection<Rt>;
pub use sqlx_mysql::{
types, MySql, MySqlColumn, MySqlDatabaseError, MySqlQueryResult, MySqlRawValue,
MySqlRawValueFormat, MySqlRow, MySqlTypeId,
MySqlConnectOptions,
types, MySql, MySqlColumn, MySqlConnectOptions, MySqlDatabaseError, MySqlQueryResult,
MySqlRawValue, MySqlRawValueFormat, MySqlRow, MySqlTypeId,
};