mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-10-04 12:11:05 +00:00
tools: allow type_complexity on purely internal field
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
19018f9881
commit
64dc5dbf08
@ -27,6 +27,7 @@ pub trait AsyncCacher<K, V: Clone>: Sync + Send {
|
|||||||
/// AsyncCacher.
|
/// AsyncCacher.
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct AsyncLruCache<K, V> {
|
pub struct AsyncLruCache<K, V> {
|
||||||
|
#[allow(clippy::type_complexity)]
|
||||||
maps: Arc<Mutex<(LruCache<K, V>, HashMap<K, BroadcastFuture<Option<V>>>)>>,
|
maps: Arc<Mutex<(LruCache<K, V>, HashMap<K, BroadcastFuture<Option<V>>>)>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user