fix: run cargo fmt with latest Rust (again...)

This commit is contained in:
Austin Bonander 2023-09-25 17:53:16 -07:00
parent ca608a964e
commit 264ab5360b

View file

@ -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
}