[−][src]Trait embedded_hal::blocking::spi::Transactional
Transactional trait allows multiple actions to be executed as part of a single SPI transaction
Associated Types
type Error
Associated error type
Required methods
fn try_exec<'a>(
&mut self,
operations: &mut [Operation<'a, W>]
) -> Result<(), Self::Error>
&mut self,
operations: &mut [Operation<'a, W>]
) -> Result<(), Self::Error>
Execute the provided transactions
Implementors
impl<W: 'static, E, S> Transactional<W> for S where
S: Default<W> + Write<W, Error = E> + Transfer<W, Error = E>,
W: Copy + Clone,
[src]
S: Default<W> + Write<W, Error = E> + Transfer<W, Error = E>,
W: Copy + Clone,