[][src]Trait nrf52832_hal::prelude::_embedded_hal_blocking_spi_Write

pub trait _embedded_hal_blocking_spi_Write<W> {
    type Error;
    fn write(&mut self, words: &[W]) -> Result<(), Self::Error>;
}

Blocking write

Associated Types

Error type

Required Methods

Sends words to the slave, ignoring all the incoming words

Implementors

impl<W, S> Write<W> for S where
    S: Default<W>,
    W: Clone
[src]