Trait ErrorType

Source
pub trait ErrorType {
    type Error: Error;
}
Expand description

SPI error type trait.

This just defines the error type, to be used by the other SPI traits.

Required Associated Types§

Source

type Error: Error

Error type.

Implementations on Foreign Types§

Source§

impl<T: ErrorType + ?Sized> ErrorType for &mut T

Implementors§

impl<'a, BUS, CS, D> ErrorType for AtomicDevice<'a, BUS, CS, D>
where BUS: ErrorType, CS: OutputPin,

impl<'a, BUS, CS, D> ErrorType for CriticalSectionDevice<'a, BUS, CS, D>
where BUS: ErrorType, CS: OutputPin,

impl<'a, BUS, CS, D> ErrorType for RefCellDevice<'a, BUS, CS, D>
where BUS: ErrorType, CS: OutputPin,

impl<BUS, CS, D> ErrorType for ExclusiveDevice<BUS, CS, D>
where BUS: ErrorType, CS: OutputPin,

impl<BUS, CS, D> ErrorType for ArbiterDevice<'_, BUS, CS, D>
where BUS: ErrorType, CS: OutputPin,