Struct embedded_c_sdk_bind_hal::spi::SpiDevice
source · pub struct SpiDevice { /* private fields */ }
Implementations§
Trait Implementations§
source§impl SpiDevice for SpiDevice
impl SpiDevice for SpiDevice
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 Freeze for SpiDevice
impl RefUnwindSafe for SpiDevice
impl Send for SpiDevice
impl Sync for SpiDevice
impl Unpin for SpiDevice
impl UnwindSafe for SpiDevice
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