cargo fmt

This commit is contained in:
Kian-Meng Ang
2022-08-15 21:07:01 +08:00
parent 625bcb4877
commit 84295d5b35
28 changed files with 122 additions and 51 deletions

View File

@@ -160,7 +160,8 @@ impl PartialEq<str> for OwnedBytes {
}
impl<'a, T: ?Sized> PartialEq<&'a T> for OwnedBytes
where OwnedBytes: PartialEq<T>
where
OwnedBytes: PartialEq<T>,
{
fn eq(&self, other: &&'a T) -> bool {
*self == **other