mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-23 10:38:57 +00:00
fix: run cargo fmt with latest Rust (again...)
This commit is contained in:
@@ -49,7 +49,9 @@ impl Encode<'_, Sqlite> for Box<[u8]> {
|
||||
}
|
||||
|
||||
fn encode_by_ref(&self, args: &mut Vec<SqliteArgumentValue<'_>>) -> IsNull {
|
||||
args.push(SqliteArgumentValue::Blob(Cow::Owned(self.clone().into_vec())));
|
||||
args.push(SqliteArgumentValue::Blob(Cow::Owned(
|
||||
self.clone().into_vec(),
|
||||
)));
|
||||
|
||||
IsNull::No
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user