pub type AtResult<'a> = Result<&'a str, AtError>;
Result type for AT command operations Returns either a static string response or an AtError
pub enum AtResult<'a> { Ok(&'a str), Err(AtError), }
Contains the success value
Contains the error value