Enum websocket::dataframe::Opcode
[-] [+]
[src]
pub enum Opcode { Continuation, Text, Binary, NonControl1, NonControl2, NonControl3, NonControl4, NonControl5, Close, Ping, Pong, Control1, Control2, Control3, Control4, Control5, }
Represents a WebSocket data frame opcode
Variants
Methods
impl Opcode
fn new(op: u8) -> Option<Opcode>
Attempts to form an Opcode from a nibble.
Returns the Opcode, or None if the opcode is out of range.