pub enum ATResponse {
Ok,
Error,
Busy,
WiFiGotIp,
}
Expand description
Possible responses from an esp8266 AT command.
This does not contain all possible responses but it does contain ever response that can be received from the commands sent in this crates
Variants§
Trait Implementations§
Source§impl Debug for ATResponse
impl Debug for ATResponse
Source§impl PartialEq for ATResponse
impl PartialEq for ATResponse
impl StructuralPartialEq for ATResponse
Auto Trait Implementations§
impl Freeze for ATResponse
impl RefUnwindSafe for ATResponse
impl Send for ATResponse
impl Sync for ATResponse
impl Unpin for ATResponse
impl UnwindSafe for ATResponse
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