refactor(clippy): apply rust 1.83.0 lints

This commit is contained in:
LGUG2Z
2024-11-28 12:12:46 -08:00
parent 46b81e4372
commit b22ec90438

View File

@@ -44,7 +44,7 @@ impl<'a, T: Clone> ComIn<'a, T> {
}
}
impl<'a, T> Deref for ComIn<'a, T> {
impl<T> Deref for ComIn<'_, T> {
type Target = T;
fn deref(&self) -> &Self::Target {
&self.data