Skip to content

Commit 264ab53

Browse files
committed
fix: run cargo fmt with latest Rust (again...)
1 parent ca608a9 commit 264ab53

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sqlx-sqlite/src/types/bytes.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ impl Encode<'_, Sqlite> for Box<[u8]> {
4949
}
5050

5151
fn encode_by_ref(&self, args: &mut Vec<SqliteArgumentValue<'_>>) -> IsNull {
52-
args.push(SqliteArgumentValue::Blob(Cow::Owned(self.clone().into_vec())));
52+
args.push(SqliteArgumentValue::Blob(Cow::Owned(
53+
self.clone().into_vec(),
54+
)));
5355

5456
IsNull::No
5557
}

0 commit comments

Comments
 (0)