chore: address Rust 1.84.0 clippy lints (#7021)

This commit is contained in:
Chethan Rao
2025-01-15 18:19:41 +05:30
committed by GitHub
parent bd1f077057
commit 4664d4bc4b
36 changed files with 159 additions and 213 deletions

View File

@ -288,10 +288,10 @@ impl std::fmt::Display for Op<'_> {
}
}
pub async fn decide_storage_scheme<'a, T, D>(
pub async fn decide_storage_scheme<T, D>(
store: &KVRouterStore<T>,
storage_scheme: MerchantStorageScheme,
operation: Op<'a>,
operation: Op<'_>,
) -> MerchantStorageScheme
where
D: de::DeserializeOwned