Enum CharacterDisplayError

Source
pub enum CharacterDisplayError<I2C>
where I2C: I2c,
{ I2cError(I2C::Error), RowOutOfRange, ColumnOutOfRange, FormattingError(Error), UnsupportedDisplayType, UnsupportedOperation, ReadNotSupported, BadDeviceId, BufferTooSmall, }
Expand description

Errors that can occur when using the LCD backpack

Variants§

§

I2cError(I2C::Error)

I2C error returned from the underlying I2C implementation

§

RowOutOfRange

Row is out of range

§

ColumnOutOfRange

Column is out of range

§

FormattingError(Error)

Formatting error

§

UnsupportedDisplayType

The discplay type is not compatible with specific adapter.

§

UnsupportedOperation

The requested operation is not supported by the adapter or controller

§

ReadNotSupported

Read operation is not supported by the adapter

§

BadDeviceId

Internal error - bad device ID

§

BufferTooSmall

Internal error - buffer too small

Trait Implementations§

Source§

impl<I2C> Clone for CharacterDisplayError<I2C>
where I2C: I2c + Clone, I2C::Error: Clone,

Source§

fn clone(&self) -> CharacterDisplayError<I2C>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<I2C> Debug for CharacterDisplayError<I2C>
where I2C: I2c + Debug, I2C::Error: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<I2C> Display for CharacterDisplayError<I2C>
where I2C: I2c,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<I2C> From<&CharacterDisplayError<I2C>> for &'static str
where I2C: I2c,

Source§

fn from(err: &CharacterDisplayError<I2C>) -> Self

Converts to this type from the input type.
Source§

impl<I2C> From<Error> for CharacterDisplayError<I2C>
where I2C: I2c,

Source§

fn from(err: Error) -> Self

Converts to this type from the input type.
Source§

impl<I2C> PartialEq for CharacterDisplayError<I2C>
where I2C: I2c + PartialEq, I2C::Error: PartialEq,

Source§

fn eq(&self, other: &CharacterDisplayError<I2C>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<I2C> Copy for CharacterDisplayError<I2C>
where I2C: I2c + Copy, I2C::Error: Copy,

Source§

impl<I2C> StructuralPartialEq for CharacterDisplayError<I2C>
where I2C: I2c,

Auto Trait Implementations§

§

impl<I2C> Freeze for CharacterDisplayError<I2C>
where <I2C as ErrorType>::Error: Freeze,

§

impl<I2C> RefUnwindSafe for CharacterDisplayError<I2C>
where <I2C as ErrorType>::Error: RefUnwindSafe,

§

impl<I2C> Send for CharacterDisplayError<I2C>
where <I2C as ErrorType>::Error: Send,

§

impl<I2C> Sync for CharacterDisplayError<I2C>
where <I2C as ErrorType>::Error: Sync,

§

impl<I2C> Unpin for CharacterDisplayError<I2C>
where <I2C as ErrorType>::Error: Unpin,

§

impl<I2C> UnwindSafe for CharacterDisplayError<I2C>
where <I2C as ErrorType>::Error: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.