pub enum AtError {
UnknownCommand,
NotSupported,
InvalidArgs,
}Expand description
Error types that can occur during AT command processing
Variants§
UnknownCommand
The command is not recognized
NotSupported
The command is recognized but not supported
InvalidArgs
The command arguments are invalid
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AtError
impl RefUnwindSafe for AtError
impl Send for AtError
impl Sync for AtError
impl Unpin for AtError
impl UnwindSafe for AtError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more