pub trait _embedded_hal_blocking_spi_Transfer<W> {
    type Error;
    // Required method
    fn transfer<'w>(
        &mut self,
        words: &'w mut [W]
    ) -> Result<&'w [W], Self::Error>;
}Expand description
Blocking transfer
pub trait _embedded_hal_blocking_spi_Transfer<W> {
    type Error;
    // Required method
    fn transfer<'w>(
        &mut self,
        words: &'w mut [W]
    ) -> Result<&'w [W], Self::Error>;
}Blocking transfer