We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eecf646 commit 6298952Copy full SHA for 6298952
src/futures/spi.rs
@@ -29,7 +29,7 @@ pub trait ReadWriteInPlace<Word: 'static> {
29
30
/// Writes `words` to the slave from the `readwrite` buffer and reads words into the same buffer.
31
/// This method uses a single `readwrite` buffer.
32
- fn readwrite_inplace<'a>(&'a mut self, readwrite: &'a mut [MaybeUninit<Word>]) -> Self::ReadWriteInPlaceFuture<'a>;
+ fn readwrite_inplace<'a>(&'a mut self, readwrite: &'a mut [Word]) -> Self::ReadWriteInPlaceFuture<'a>;
33
}
34
35
/// Async write
0 commit comments