pub enum ClientErrorKind {
UnexpectedResponse(EdgeResponseEnum),
Edge(EdgeError),
Connection(EdgeConnectionError),
NoConnection(EdgeRequestEnum),
Disconnected(Cow<'static, str>),
Io(Error),
WaitAck(WaitAckError),
}Variants§
UnexpectedResponse(EdgeResponseEnum)
Edge(EdgeError)
Connection(EdgeConnectionError)
NoConnection(EdgeRequestEnum)
Disconnected(Cow<'static, str>)
Io(Error)
WaitAck(WaitAckError)
Trait Implementations§
Source§impl Debug for ClientErrorKind
impl Debug for ClientErrorKind
Auto Trait Implementations§
impl !Freeze for ClientErrorKind
impl !RefUnwindSafe for ClientErrorKind
impl Send for ClientErrorKind
impl !Sync for ClientErrorKind
impl Unpin for ClientErrorKind
impl !UnwindSafe for ClientErrorKind
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