Enum tungstenite::Message [] [src]

pub enum Message {
    Text(String),
    Binary(Vec<u8>),
    Ping(Vec<u8>),
    Pong(Vec<u8>),
}

An enum representing the various forms of a WebSocket message.

Variants

A text WebSocket message

A binary WebSocket message

A ping message with the specified payload

The payload here must have a length less than 125 bytes

A pong message with the specified payload

The payload here must have a length less than 125 bytes

Methods

impl Message
[src]

[src]

Create a new text WebSocket message from a stringable.

[src]

Create a new binary WebSocket message by converting to Vec.

[src]

Indicates whether a message is a text message.

[src]

Indicates whether a message is a binary message.

[src]

Indicates whether a message is a ping message.

[src]

Indicates whether a message is a pong message.

[src]

Get the length of the WebSocket message.

[src]

Returns true if the WebSocket message has no content. For example, if the other side of the connection sent an empty string.

[src]

Consume the WebSocket and return it as binary data.

[src]

Attempt to consume the WebSocket message and convert it to a String.

[src]

Attempt to get a &str from the WebSocket message, this will try to convert binary data to utf8.

Trait Implementations

impl Debug for Message
[src]

[src]

Formats the value using the given formatter.

impl Eq for Message
[src]

impl PartialEq for Message
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Clone for Message
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<String> for Message
[src]

[src]

Performs the conversion.

impl<'s> From<&'s str> for Message
[src]

[src]

Performs the conversion.

impl<'b> From<&'b [u8]> for Message
[src]

[src]

Performs the conversion.

impl From<Vec<u8>> for Message
[src]

[src]

Performs the conversion.

impl Display for Message
[src]

[src]

Formats the value using the given formatter. Read more