Enum websocket_base::dataframe::Opcode
source · [−]pub enum Opcode {
Show 16 variants
Continuation,
Text,
Binary,
NonControl1,
NonControl2,
NonControl3,
NonControl4,
NonControl5,
Close,
Ping,
Pong,
Control1,
Control2,
Control3,
Control4,
Control5,
}
Expand description
Represents a WebSocket data frame opcode
Variants
Continuation
A continuation data frame
Text
A UTF-8 text data frame
Binary
A binary data frame
NonControl1
An undefined non-control data frame
NonControl2
An undefined non-control data frame
NonControl3
An undefined non-control data frame
NonControl4
An undefined non-control data frame
NonControl5
An undefined non-control data frame
Close
A close data frame
Ping
A ping data frame
Pong
A pong data frame
Control1
An undefined control data frame
Control2
An undefined control data frame
Control3
An undefined control data frame
Control4
An undefined control data frame
Control5
An undefined control data frame
Implementations
Trait Implementations
impl Copy for Opcode
impl StructuralPartialEq for Opcode
Auto Trait Implementations
impl RefUnwindSafe for Opcode
impl Send for Opcode
impl Sync for Opcode
impl Unpin for Opcode
impl UnwindSafe for Opcode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more