Enum libp2p_websocket::error::Error [−][src]
pub enum Error<E> { Transport(E), Tls(Error), Handshake(Box<dyn Error + Send + Sync>), TooManyRedirects, InvalidMultiaddr(Multiaddr), InvalidRedirectLocation, Base(Box<dyn Error + Send + Sync>), }
Expand description
Error in WebSockets.
Variants
Error in the transport layer underneath.
Tls(Error)
A TLS related error.
Websocket handshake error.
The configured maximum of redirects have been made.
A multi-address is not supported.
The location header URL was invalid.
Websocket base framing error.
Trait Implementations
Auto Trait Implementations
impl<E> !RefUnwindSafe for Error<E>
impl<E> !UnwindSafe for Error<E>