pub trait Read<Word: Copy = u8>: ErrorType {
    fn read(&mut self, words: &mut [Word]) -> Result<(), Self::Error>;
}
Expand description

Blocking read

Required methods

Reads words from the slave.

The word value sent on MOSI during reading is implementation-defined, typically 0x00, 0xFF, or configurable.

Implementations on Foreign Types

Implementors