Enum actix_web::ws::OpCode [−][src]
pub enum OpCode { Continue, Text, Binary, Close, Ping, Pong, Bad, }
Operation codes as part of rfc6455.
Variants
Continue
Indicates a continuation frame of a fragmented message.
Text
Indicates a text data frame.
Binary
Indicates a binary data frame.
Close
Indicates a close control frame.
Ping
Indicates a ping control frame.
Pong
Indicates a pong control frame.
Bad
Indicates an invalid opcode was received.
Trait Implementations
impl Debug for OpCode
[src]
impl Debug for OpCode
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Eq for OpCode
[src]
impl Eq for OpCode
impl PartialEq for OpCode
[src]
impl PartialEq for OpCode
fn eq(&self, other: &OpCode) -> bool
[src]
fn eq(&self, other: &OpCode) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]This method tests for !=
.
impl Clone for OpCode
[src]
impl Clone for OpCode
fn clone(&self) -> OpCode
[src]
fn clone(&self) -> OpCode
Returns 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 OpCode
impl Display for OpCode
[src]
impl Display for OpCode
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Into<u8> for OpCode
[src]
impl Into<u8> for OpCode
impl From<u8> for OpCode
[src]
impl From<u8> for OpCode