Enum mio_httpc::WSPacket

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

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

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.