From 78aa08b100f87fbde3738c78db5a8942e7e9b991 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 11 Jan 2024 22:10:12 +0400 Subject: Silence the two type complexity lints meh --- src/dbus/mutter_screen_cast.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/dbus/mutter_screen_cast.rs b/src/dbus/mutter_screen_cast.rs index 020d06a3..cf22f8a0 100644 --- a/src/dbus/mutter_screen_cast.rs +++ b/src/dbus/mutter_screen_cast.rs @@ -16,6 +16,7 @@ use super::Start; pub struct ScreenCast { connectors: Arc>>, to_niri: calloop::channel::Sender, + #[allow(clippy::type_complexity)] sessions: Arc)>>>, } @@ -24,6 +25,7 @@ pub struct Session { id: usize, connectors: Arc>>, to_niri: calloop::channel::Sender, + #[allow(clippy::type_complexity)] streams: Arc)>>>, } -- cgit