[][src]Struct websocket_lite::Message

pub struct Message { /* fields omitted */ }

A text string, a block of binary data or a WebSocket control frame.

Methods

impl Message
[src]

Creates a message from a Bytes object.

The message can be tagged as text or binary. When the opcode parameter is Opcode::Text this function validates the bytes in data and returns Err if they do not contain valid UTF-8 text.

Creates a text message from a &str.

Creates a binary message from any type that can be converted to Bytes, such as &[u8] or Vec<u8>.

Creates a message that indicates the connection is about to be closed.

The reason parameter is an optional numerical status code and text description. Valid reasons may be defined by a particular WebSocket server.

Creates a message requesting a pong response.

The client can send one of these to request a pong response from the server.

Creates a response to a ping message.

The client can send one of these in response to a ping from the server.

Returns this message's WebSocket opcode.

Returns a reference to the data held in this message.

Consumes the message, returning its data.

For messages with opcode Opcode::Text, returns a reference to the text. Returns None otherwise.

Trait Implementations

impl Clone for Message
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Message> for Message
[src]

impl Debug for Message
[src]

Auto Trait Implementations

impl Send for Message

impl Sync for Message

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T