[style](trx-core): format rig trait signatures

Co-authored-by: OpenAI Codex <codex@openai.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-03 19:41:14 +01:00
parent da9d762ad2
commit 417a86284c
+4 -1
View File
@@ -75,7 +75,10 @@ pub trait AudioSource: Send + Sync {
/// Subscribe to PCM from a specific backend channel when available.
/// Channel `0` is always the primary channel.
fn subscribe_pcm_channel(&self, channel_idx: usize) -> tokio::sync::broadcast::Receiver<Vec<f32>> {
fn subscribe_pcm_channel(
&self,
channel_idx: usize,
) -> tokio::sync::broadcast::Receiver<Vec<f32>> {
if channel_idx == 0 {
self.subscribe_pcm()
} else {