Trait embedded_hal::blocking::spi::Write[][src]

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

Blocking write

Associated Types

type Error[src]

Error type

Loading content...

Required methods

fn write(&mut self, words: &[W]) -> Result<(), Self::Error>[src]

Sends words to the slave, ignoring all the incoming words

Loading content...

Implementors

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

type Error = S::Error

Loading content...