pub enum ProtocolError {
UnmaskedFrame,
MaskedFrame,
InvalidOpcode(u8),
InvalidLength(usize),
BadOpCode,
Overflow,
ContinuationNotStarted,
ContinuationStarted,
ContinuationFragment(OpCode),
Io(Error),
}
Expand description
Websocket protocol errors
Variants§
UnmaskedFrame
Received an unmasked frame from client
MaskedFrame
Received a masked frame from server
InvalidOpcode(u8)
Encountered invalid opcode
InvalidLength(usize)
Invalid control frame length
BadOpCode
Bad web socket op code
Overflow
A payload reached size limit.
ContinuationNotStarted
Continuation is not started
ContinuationStarted
Received new continuation but it is already started
ContinuationFragment(OpCode)
Unknown continuation fragment
Io(Error)
Io error
Trait Implementations§
Source§impl Debug for ProtocolError
impl Debug for ProtocolError
Source§impl Display for ProtocolError
impl Display for ProtocolError
Source§impl From<Error> for ProtocolError
impl From<Error> for ProtocolError
Source§fn from(original: Error) -> ProtocolError
fn from(original: Error) -> ProtocolError
Converts to this type from the input type.
Source§impl From<OpCode> for ProtocolError
impl From<OpCode> for ProtocolError
Source§fn from(original: OpCode) -> ProtocolError
fn from(original: OpCode) -> ProtocolError
Converts to this type from the input type.
Source§impl From<u8> for ProtocolError
impl From<u8> for ProtocolError
Source§fn from(original: u8) -> ProtocolError
fn from(original: u8) -> ProtocolError
Converts to this type from the input type.
Source§impl From<usize> for ProtocolError
impl From<usize> for ProtocolError
Source§fn from(original: usize) -> ProtocolError
fn from(original: usize) -> ProtocolError
Converts to this type from the input type.
Source§impl ResponseError for ProtocolError
impl ResponseError for ProtocolError
Source§fn status_code(&self) -> StatusCode
fn status_code(&self) -> StatusCode
Response’s status code Read more
Auto Trait Implementations§
impl Freeze for ProtocolError
impl !RefUnwindSafe for ProtocolError
impl Send for ProtocolError
impl Sync for ProtocolError
impl Unpin for ProtocolError
impl !UnwindSafe for ProtocolError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more