pub struct SpiDeviceWithConfig<'a, M: RawMutex, BUS: SetConfig, CS> { /* private fields */ }Expand description
Implementations§
Trait Implementations§
Source§impl<'a, M, BUS, CS> ErrorType for SpiDeviceWithConfig<'a, M, BUS, CS>
 
impl<'a, M, BUS, CS> ErrorType for SpiDeviceWithConfig<'a, M, BUS, CS>
Source§impl<M, BUS, CS, Word> SpiDevice<Word> for SpiDeviceWithConfig<'_, M, BUS, CS>
 
impl<M, BUS, CS, Word> SpiDevice<Word> for SpiDeviceWithConfig<'_, M, BUS, CS>
Source§async fn transaction(
    &mut self,
    operations: &mut [Operation<'_, Word>],
) -> Result<(), Self::Error>
 
async fn transaction( &mut self, operations: &mut [Operation<'_, Word>], ) -> Result<(), Self::Error>
Perform a transaction against the device. Read more
Source§async fn read(&mut self, buf: &mut [Word]) -> Result<(), Self::Error>
 
async fn read(&mut self, buf: &mut [Word]) -> Result<(), Self::Error>
Do a read within a transaction. Read more
Source§async fn write(&mut self, buf: &[Word]) -> Result<(), Self::Error>
 
async 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 SpiDeviceWithConfig<'a, M, BUS, CS>
impl<'a, M, BUS, CS> !RefUnwindSafe for SpiDeviceWithConfig<'a, M, BUS, CS>
impl<'a, M, BUS, CS> Send for SpiDeviceWithConfig<'a, M, BUS, CS>
impl<'a, M, BUS, CS> Sync for SpiDeviceWithConfig<'a, M, BUS, CS>
impl<'a, M, BUS, CS> Unpin for SpiDeviceWithConfig<'a, M, BUS, CS>
impl<'a, M, BUS, CS> !UnwindSafe for SpiDeviceWithConfig<'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