Cargo clippy & format

This commit is contained in:
Natsu Kagami 2025-05-13 00:47:18 +02:00
parent cdd85dae71
commit c5f46dd7fe
Signed by: nki
GPG key ID: 55A032EB38B49ADB
22 changed files with 79 additions and 87 deletions

View file

@ -64,7 +64,7 @@ where
}
}
impl<'a, T> DBWriteGuard<'a, T>
impl<T> DBWriteGuard<'_, T>
where
T: Send + Sync + Clone + std::fmt::Debug + Serialize + DeserializeOwned,
{
@ -79,7 +79,7 @@ where
}
}
impl<'a, T> Drop for DBWriteGuard<'a, T>
impl<T> Drop for DBWriteGuard<'_, T>
where
T: Send + Sync + Clone + std::fmt::Debug + Serialize + DeserializeOwned,
{