Enum actix_web::ws::OpCode [−][src]
pub enum OpCode {
Continue,
Text,
Binary,
Close,
Ping,
Pong,
Bad,
}Operation codes as part of rfc6455.
Variants
ContinueIndicates a continuation frame of a fragmented message.
TextIndicates a text data frame.
BinaryIndicates a binary data frame.
CloseIndicates a close control frame.
PingIndicates a ping control frame.
PongIndicates a pong control frame.
BadIndicates an invalid opcode was received.
Trait Implementations
impl Debug for OpCode[src]
impl Debug for OpCodefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for OpCode[src]
impl Eq for OpCodeimpl PartialEq for OpCode[src]
impl PartialEq for OpCodefn eq(&self, other: &OpCode) -> bool[src]
fn eq(&self, other: &OpCode) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Clone for OpCode[src]
impl Clone for OpCodefn clone(&self) -> OpCode[src]
fn clone(&self) -> OpCodeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for OpCode[src]
impl Copy for OpCodeimpl Display for OpCode[src]
impl Display for OpCodefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Into<u8> for OpCode[src]
impl Into<u8> for OpCodeimpl From<u8> for OpCode[src]
impl From<u8> for OpCode