pub enum Error {
ConnectionClosed,
AlreadyClosed,
Io(Error),
Tls(TlsError),
Capacity(CapacityError),
Protocol(ProtocolError),
SendQueueFull(Message),
Utf8,
Url(UrlError),
Http(Response<Option<String>>),
HttpFormat(Error),
}Expand description
Possible WebSocket errors.
Variants
ConnectionClosed
WebSocket connection closed normally. This informs you of the close. It’s not an error as such and nothing wrong happened.
This is returned as soon as the close handshake is finished (we have both sent and received a close frame) on the server end and as soon as the server has closed the underlying connection if this endpoint is a client.
Thus when you receive this, it is safe to drop the underlying connection.
Receiving this error means that the WebSocket object is not usable anymore and the only meaningful action with it is dropping it.
AlreadyClosed
Trying to work with already closed connection.
Trying to read or write after receiving ConnectionClosed causes this.
As opposed to ConnectionClosed, this indicates your code tries to operate on the
connection when it really shouldn’t anymore, so this really indicates a programmer
error on your part.
Io(Error)
Input-output error. Apart from WouldBlock, these are generally errors with the underlying connection and you should probably consider them fatal.
Tls(TlsError)
TLS error.
Note that this error variant is enabled unconditionally even if no TLS feature is enabled, to provide a feature-agnostic API surface.
Capacity(CapacityError)
- When reading: buffer capacity exhausted.
- When writing: your message is bigger than the configured max message size (64MB by default).
Protocol(ProtocolError)
Protocol violation.
SendQueueFull(Message)
Message send queue full.
Utf8
UTF coding error.
Url(UrlError)
Invalid URL.
Http(Response<Option<String>>)
HTTP error.
HttpFormat(Error)
HTTP format error.
Trait Implementations
impl Error for Error
impl Error for Error
fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
impl From<FromUtf8Error> for Error
impl From<FromUtf8Error> for Error
fn from(FromUtf8Error) -> Error
fn from(FromUtf8Error) -> Error
Converts to this type from the input type.
impl From<InvalidHeaderName> for Error
impl From<InvalidHeaderName> for Error
fn from(err: InvalidHeaderName) -> Error
fn from(err: InvalidHeaderName) -> Error
Converts to this type from the input type.
impl From<InvalidHeaderValue> for Error
impl From<InvalidHeaderValue> for Error
fn from(err: InvalidHeaderValue) -> Error
fn from(err: InvalidHeaderValue) -> Error
Converts to this type from the input type.
impl From<InvalidStatusCode> for Error
impl From<InvalidStatusCode> for Error
fn from(err: InvalidStatusCode) -> Error
fn from(err: InvalidStatusCode) -> Error
Converts to this type from the input type.
impl From<InvalidUri> for Error
impl From<InvalidUri> for Error
fn from(err: InvalidUri) -> Error
fn from(err: InvalidUri) -> Error
Converts to this type from the input type.
impl From<ToStrError> for Error
impl From<ToStrError> for Error
fn from(ToStrError) -> Error
fn from(ToStrError) -> Error
Converts to this type from the input type.
impl NonBlockingError for Error
impl NonBlockingError for Error
fn into_non_blocking(self) -> Option<Error>
fn into_non_blocking(self) -> Option<Error>
Convert WouldBlock to None and don’t touch other errors.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more