pub enum EspAtError<ER, EW> {
Busy,
BufOverflow,
NoConnection,
Error,
DirtyData,
Read,
SerialRead(ER),
SerialWrite(EW),
}
Variants§
Trait Implementations§
Source§impl<ER, EW> From<Infallible> for EspAtError<ER, EW>
impl<ER, EW> From<Infallible> for EspAtError<ER, EW>
Source§fn from(_err: Infallible) -> Self
fn from(_err: Infallible) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<ER, EW> Freeze for EspAtError<ER, EW>
impl<ER, EW> RefUnwindSafe for EspAtError<ER, EW>where
ER: RefUnwindSafe,
EW: RefUnwindSafe,
impl<ER, EW> Send for EspAtError<ER, EW>
impl<ER, EW> Sync for EspAtError<ER, EW>
impl<ER, EW> Unpin for EspAtError<ER, EW>
impl<ER, EW> UnwindSafe for EspAtError<ER, EW>where
ER: UnwindSafe,
EW: UnwindSafe,
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