diff --git a/src/blocking/i2s.rs b/src/blocking/i2s.rs index 1264cc9e4..0241adf2a 100644 --- a/src/blocking/i2s.rs +++ b/src/blocking/i2s.rs @@ -32,7 +32,11 @@ pub trait WriteIter { type Error; /// Sends `left_words` and `right_words` to the slave. - fn try_write(&mut self, left_words: LW, right_words: RW) -> Result<(), Self::Error> + fn try_write_iter( + &mut self, + left_words: LW, + right_words: RW, + ) -> Result<(), Self::Error> where LW: IntoIterator, RW: IntoIterator;