1 2 3 4 5 6 7 8 9 10
#[derive(Debug)] pub enum Error { WiFiError(&'static str), ConfigError(&'static str), TrafficError(&'static str), CSIError(&'static str), SystemError(&'static str), } pub type Result<T> = core::result::Result<T, Error>;