pub enum ClientError {
Io(Error),
Tls(String),
Codec(Error),
Router(String),
ChannelClosed,
Protocol(String),
Setup(String),
}Variants§
Io(Error)
Tls(String)
Codec(Error)
Router(String)
ChannelClosed
Protocol(String)
Setup(String)
Codec initial_setup failed during connection establishment.
Trait Implementations§
Source§impl Debug for ClientError
impl Debug for ClientError
Auto Trait Implementations§
impl !RefUnwindSafe for ClientError
impl !UnwindSafe for ClientError
impl Freeze for ClientError
impl Send for ClientError
impl Sync for ClientError
impl Unpin for ClientError
impl UnsafeUnpin for ClientError
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