Enum actix_http::ws::ProtocolError [−][src]
pub enum ProtocolError {
UnmaskedFrame,
MaskedFrame,
InvalidOpcode(u8),
InvalidLength(usize),
BadOpCode,
Overflow,
ContinuationNotStarted,
ContinuationStarted,
ContinuationFragment(OpCode),
Io(Error),
}Expand description
Websocket protocol errors
Variants
Received an unmasked frame from client
Received a masked frame from server
Encountered invalid opcode
Tuple Fields of InvalidOpcode
0: u8Invalid control frame length
Tuple Fields of InvalidLength
0: usizeBad web socket op code
A payload reached size limit.
Continuation is not started
Received new continuation but it is already started
Unknown continuation fragment
Tuple Fields of ContinuationFragment
0: OpCodeIo error
Tuple Fields of Io
0: ErrorTrait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Response’s status code Read more