rsiot/components_config/uart_general/protocol/
error.rs1use crate::serde_utils;
2
3#[allow(missing_docs)]
4#[derive(Debug, thiserror::Error)]
5pub enum Error {
6 #[error(transparent)]
7 Serde(#[from] serde_utils::Error),
8
9 #[error("CRC mismatch")]
10 CrcMismatch,
11}