structstd.http.WebSocket.SmallMessage[src]

Fields

opcode: Opcode

Can be text, binary, or ping.

data: []u8

Source Code

Source code
pub const SmallMessage = struct {
    /// Can be text, binary, or ping.
    opcode: Opcode,
    data: []u8,
}