pub trait Clear<SPI: SpiDevice, ERROR> {
// Required method
async fn clear(&mut self, spi: &mut SPI) -> Result<(), ERROR>;
}Expand description
Displays that can be cleared with their base color.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".