style: rustfmt

This commit is contained in:
Ryan Leckey
2020-07-24 08:07:44 -07:00
parent 3840d031c6
commit b61c0821ab
12 changed files with 232 additions and 61 deletions

View File

@@ -66,7 +66,11 @@ impl<'q> From<SqliteStatement<'q>> for crate::any::AnyStatement<'q> {
#[inline]
fn from(statement: SqliteStatement<'q>) -> Self {
crate::any::AnyStatement::<'q> {
columns: statement.columns.iter().map(|col| col.clone().into()).collect(),
columns: statement
.columns
.iter()
.map(|col| col.clone().into())
.collect(),
column_names: statement.column_names,
parameters: Some(Either::Right(statement.parameters)),
sql: statement.sql,