mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
fix: run cargo fmt
with latest Rust (again...)
This commit is contained in:
parent
ca608a964e
commit
264ab5360b
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue