pub type AtResult<'a, const SIZE: usize> = Result<Bytes<SIZE>, AtError<'a>>;Expand description
Result type for AT command operations
Returns either a Bytes<SIZE> response buffer or an AtError
Aliased Type§
pub enum AtResult<'a, const SIZE: usize> {
Ok(Bytes<SIZE>),
Err(AtError<'a>),
}