pub trait Transactional<Word: 'static + Copy = u8>: ErrorType {
    fn exec<'a>(
        &mut self,
        operations: &mut [Operation<'a, Word>]
    ) -> Result<(), Self::Error>; }
Expand description

Transactional trait allows multiple actions to be executed as part of a single SPI transaction

Required methods

Execute the provided transactions

Implementations on Foreign Types

Implementors