Enum engineioxide::errors::Error
source · pub enum Error {
Show 21 variants
Serialize(Error),
Base64(DecodeError),
StrUtf8(Utf8Error),
Io(Error),
BadPacket(Packet),
WsTransport(Error),
HttpTransport(Error),
Http(Error),
SendChannel(TrySendError<Packet>),
RecvChannel(TryRecvError),
HeartbeatTimeout,
UpgradeError,
Aborted,
HttpErrorResponse(StatusCode),
UnknownTransport,
UnknownSessionID(Sid),
BadHandshakeMethod,
TransportMismatch,
UnsupportedProtocolVersion,
PayloadTooLarge,
InvalidPacketLength,
}Variants§
Serialize(Error)
Base64(DecodeError)
StrUtf8(Utf8Error)
Io(Error)
BadPacket(Packet)
WsTransport(Error)
HttpTransport(Error)
Http(Error)
SendChannel(TrySendError<Packet>)
RecvChannel(TryRecvError)
HeartbeatTimeout
UpgradeError
Aborted
HttpErrorResponse(StatusCode)
UnknownTransport
UnknownSessionID(Sid)
BadHandshakeMethod
TransportMismatch
UnsupportedProtocolVersion
PayloadTooLarge
InvalidPacketLength
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§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
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<DecodeError> for Error
impl From<DecodeError> for Error
source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
source§impl<B> From<Error> for Response<ResponseBody<B>>
impl<B> From<Error> for Response<ResponseBody<B>>
Convert an error into an http response If it is a known error, return the appropriate http status code Otherwise, return a 500
source§impl From<TryRecvError> for Error
impl From<TryRecvError> for Error
source§fn from(source: TryRecvError) -> Self
fn from(source: TryRecvError) -> Self
Converts to this type from the input type.
source§impl From<TrySendError<Packet>> for Error
impl From<TrySendError<Packet>> for Error
source§fn from(source: TrySendError<Packet>) -> Self
fn from(source: TrySendError<Packet>) -> Self
Converts to this type from the input type.
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§
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