[][src]Enum mio_httpc::WSPacket

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

None

Nothing to return yet.

Text(bool, &'a str)

(fin,text)

Binary(bool&'a [u8])

(fin, bin)

Ping(&'a [u8])

Ping may contain data. You should send pong back.

Pong(&'a [u8])

Pong may contain data.

Close(Option<u16>, &'a [u8])

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

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]