CRAS: fix clippy lint in audio_streams

Pass SampleFormat by value to sample_bytes() function, since it
implements Copy and is small.

BUG=None
TEST=None

Change-Id: I7d87dc1db7dd5342e500b5cedf43400634daab5d
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/adhd/+/2541844
Reviewed-by: Chih-Yang Hsia <[email protected]>
Tested-by: Fletcher Woodruff <[email protected]>
Commit-Queue: Fletcher Woodruff <[email protected]>
diff --git a/audio_streams/src/audio_streams.rs b/audio_streams/src/audio_streams.rs
index 3cb1173..8cdd0cb 100644
--- a/audio_streams/src/audio_streams.rs
+++ b/audio_streams/src/audio_streams.rs
@@ -55,7 +55,7 @@
 }
 
 impl SampleFormat {
-    pub fn sample_bytes(&self) -> usize {
+    pub fn sample_bytes(self) -> usize {
         use SampleFormat::*;
         match self {
             U8 => 1,