Chore: clippy appeasement

This commit is contained in:
Kyle Simpson
2025-02-21 14:05:59 +00:00
parent 5d320a394b
commit 47cf0b27eb
9 changed files with 25 additions and 21 deletions

View File

@@ -1,4 +1,5 @@
//! Encryption schemes supported by Discord's secure RTP negotiation.
#[cfg(any(feature = "receive", test))]
use super::tasks::error::Error as InternalError;
use aead::AeadCore;
use aes_gcm::{AeadInPlace, Aes256Gcm, KeyInit};

View File

@@ -327,6 +327,7 @@ impl Live {
return;
}
#[allow(clippy::used_underscore_items)]
self._march_deadline();
}

View File

@@ -683,6 +683,7 @@ impl Mixer {
};
#[cfg(not(test))]
#[allow(clippy::used_underscore_items)]
let send_status = self._send_packet(packet);
send_status.or_else(Error::disarm_would_block)?;