From 47f680fe4fad9e5b805be1739a6513ae695eb290 Mon Sep 17 00:00:00 2001 From: ShuiRuTian <158983297@qq.com> Date: Fri, 14 Jun 2024 12:00:45 +0800 Subject: [PATCH] Remove useless generic parameter --- src/get.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/get.rs b/src/get.rs index 27f63cc..5c71fc6 100644 --- a/src/get.rs +++ b/src/get.rs @@ -404,7 +404,7 @@ where /// Hard links a cache entry by hash to a specified location. #[cfg(any(feature = "async-std", feature = "tokio"))] -pub async fn hard_link_hash
(cache: P, key: &Integrity, to: Q) -> Result<()> +pub async fn hard_link_hash
(cache: P, key: &Integrity, to: Q) -> Result<()>
where
P: AsRef