pub trait Transactional<W>where
    W: 'static,
{ type Error; fn exec<'a>(
        &mut self,
        operations: &mut [Operation<'a, W>]
    ) -> Result<(), Self::Error>; }
Expand description

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

Required Associated Types§

Associated error type

Required Methods§

Execute the provided transactions

Implementors§