pub trait SpiBus: Write { // Required method fn max_size(&self) -> usize; }
A trait abstracting access to an SPI bus.
Returns the maximum transfer size for the bus.