[style](trx-rs): reformat codebase

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
This commit is contained in:
2026-03-17 22:36:11 +01:00
parent a823e66816
commit b533d704a1
22 changed files with 348 additions and 252 deletions
+4 -1
View File
@@ -118,7 +118,10 @@ pub async fn read_audio_msg<R: AsyncRead + Unpin>(
if len > limit {
return Err(std::io::Error::new(
std::io::ErrorKind::InvalidData,
format!("audio frame too large: {} bytes (type={:#04x})", len, msg_type),
format!(
"audio frame too large: {} bytes (type={:#04x})",
len, msg_type
),
));
}
let mut payload = vec![0u8; len as usize];