1 2 3 4 5 6 7 8
/// Controls errors container. #[derive(Debug, Clone, Copy, PartialEq)] pub enum Error<T, S> { // Error of [`ElapsedTimer`](timestamp_source::ElapsedTimer) ElapsedTimer(T), // Error of [`InputSwitch`](switch_hal::InputSwitch) InputSwitch(S), }