Enum display_interface_parallel_gpio::DisplayError [−][src]
#[non_exhaustive] pub enum DisplayError { InvalidFormatError, BusWriteError, DCError, CSError, DataFormatNotImplemented, RSError, OutOfBoundsError, }
Expand description
A ubiquitous error type for all kinds of problems which could happen when communicating with a display
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Expand description
Invalid data format selected for interface selected
Expand description
Unable to write to bus
Expand description
Unable to assert or de-assert data/command switching signal
Expand description
Unable to assert chip select signal
Expand description
The requested DataFormat is not implemented by this display interface implementation
Expand description
Unable to assert or de-assert reset signal
Expand description
Attempted to write to a non-existing pixel outside the display’s bounds
Trait Implementations
impl Clone for DisplayError
[src]
impl Clone for DisplayError
[src]pub fn clone(&self) -> DisplayError
[src]
pub fn clone(&self) -> DisplayError
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more