mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-04-10 04:05:49 +00:00
style: rustfmt
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user