Expand description
SpiDevice implementations.
Structs§
- Atomic
Device portable-atomicortarget_has_atomic=8 - Atomics-based shared bus
SpiDeviceimplementation. - Critical
Section Device critical-section-based shared busSpiDeviceimplementation.- Exclusive
Device SpiDeviceimplementation with exclusive access to the bus (not shared).- Mutex
Device std stdMutex-based shared busSpiDeviceimplementation.- NoDelay
- Dummy
DelayNsimplementation that panics on use. - RcDevice
stdoralloc - Implementation of
SpiDevicearound a bus shared withRc<RefCell<T>>. This is the reference-counting equivalent ofRefCellDevice, requiring allocation. - RefCell
Device RefCell-based shared busSpiDeviceimplementation.
Enums§
- Atomic
Error portable-atomicortarget_has_atomic=8 - Wrapper type for errors returned by
AtomicDevice. - Device
Error - Error type for
ExclusiveDeviceoperations.