pub enum EdgeConnectionErrorKind {
Io(Error),
Underlying(Box<dyn Error + Send>),
Codec(CodecError),
Closed,
Timeout,
Protocol,
Existed,
Reconnect,
}Variants§
Io(Error)
Underlying(Box<dyn Error + Send>)
Codec(CodecError)
Closed
Timeout
Protocol
Existed
Reconnect
Trait Implementations§
Source§impl Debug for EdgeConnectionErrorKind
impl Debug for EdgeConnectionErrorKind
Auto Trait Implementations§
impl Freeze for EdgeConnectionErrorKind
impl !RefUnwindSafe for EdgeConnectionErrorKind
impl Send for EdgeConnectionErrorKind
impl !Sync for EdgeConnectionErrorKind
impl Unpin for EdgeConnectionErrorKind
impl !UnwindSafe for EdgeConnectionErrorKind
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