Struct embassy_embedded_hal::shared_bus::blocking::spi::SpiDevice
source · pub struct SpiDevice<'a, M: RawMutex, BUS, CS> { /* private fields */ }
Expand description
SPI device on a shared bus.
Implementations§
Trait Implementations§
source§impl<BUS, M, CS> SpiDevice for SpiDevice<'_, M, BUS, CS>
impl<BUS, M, CS> SpiDevice for SpiDevice<'_, M, BUS, CS>
source§fn transaction(
&mut self,
operations: &mut [Operation<'_, u8>]
) -> Result<(), Self::Error>
fn transaction( &mut self, operations: &mut [Operation<'_, u8>] ) -> Result<(), Self::Error>
Perform a transaction against the device. Read more
source§fn read(&mut self, buf: &mut [Word]) -> Result<(), Self::Error>
fn read(&mut self, buf: &mut [Word]) -> Result<(), Self::Error>
Do a read within a transaction. Read more
source§fn write(&mut self, buf: &[Word]) -> Result<(), Self::Error>
fn write(&mut self, buf: &[Word]) -> Result<(), Self::Error>
Do a write within a transaction. Read more
Auto Trait Implementations§
impl<'a, M, BUS, CS> Freeze for SpiDevice<'a, M, BUS, CS>where
CS: Freeze,
impl<'a, M, BUS, CS> !RefUnwindSafe for SpiDevice<'a, M, BUS, CS>
impl<'a, M, BUS, CS> Send for SpiDevice<'a, M, BUS, CS>
impl<'a, M, BUS, CS> Sync for SpiDevice<'a, M, BUS, CS>
impl<'a, M, BUS, CS> Unpin for SpiDevice<'a, M, BUS, CS>where
CS: Unpin,
impl<'a, M, BUS, CS> !UnwindSafe for SpiDevice<'a, M, BUS, CS>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more