diff --git a/embassy-traits/src/i2c.rs b/embassy-traits/src/i2c.rs index 7e2b9a77..0fdf50a1 100644 --- a/embassy-traits/src/i2c.rs +++ b/embassy-traits/src/i2c.rs @@ -176,9 +176,9 @@ pub trait WriteIter { /// Error type type Error; - type WriteIterFuture<'a, U>: Future> + 'a + type WriteIterFuture<'a, V>: Future> + 'a where - U: 'a, + V: 'a + IntoIterator, Self: 'a; /// Sends bytes to slave with address `address`