[fix](trx-rs): resolve all clippy warnings

- remote_client tests: add missing server_connected field and import
  AtomicBool in the test module
- pskreporter: replace map_or(true, …) with is_none_or and
  repeat(x).take(n) with repeat_n(x, n)
- dsp.rs, scheduler.rs: suppress intentional too_many_arguments with
  #[allow(clippy::too_many_arguments)]

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
This commit is contained in:
2026-03-17 00:15:03 +01:00
parent 6eb2d5341f
commit 016d4ddfd7
4 changed files with 7 additions and 2 deletions
@@ -411,6 +411,7 @@ pub struct SchedulerStatus {
pub last_bookmark_ids: Vec<String>,
}
#[allow(clippy::too_many_arguments)]
async fn apply_scheduler_target(
rig_tx: &mpsc::Sender<RigRequest>,
rig_id: &str,