Enum mio_httpc::WSPacket [] [src]

pub enum WSPacket<'a> {
    None,
    Text(bool, &'a str),
    Binary(bool&'a [u8]),
    Ping(&'a [u8]),
    Pong(&'a [u8]),
    Close(Option<u16>, &'a [u8]),
}

WebSocket packet received from server.

Variants

Nothing to return yet.

(fin,text)

(fin, bin)

Ping may contain data. You should send pong back.

Pong may contain data.

(StatusCode,Data) Close may contain data. You should call close after receiving this (if you did not already).

Trait Implementations

Auto Trait Implementations

impl<'a> Send for WSPacket<'a>

impl<'a> Sync for WSPacket<'a>