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