pub enum OwnedMessage {
Text(String),
Binary(Vec<u8>),
Close(Option<CloseData>),
Ping(Vec<u8>),
Pong(Vec<u8>),
}
Expand description
Represents an owned WebSocket message.
OwnedMessage
s are generated when the user receives a message (since the data
has to be copied out of the network buffer anyway).
If you would like to create a message out of borrowed data to use for sending
please use the Message
struct (which contains a Cow
).
Note that OwnedMessage
and Message
can be converted into each other.
Variants§
Text(String)
A message containing UTF-8 text data
Binary(Vec<u8>)
A message containing binary data
Close(Option<CloseData>)
A message which indicates closure of the WebSocket connection. This message may or may not contain data.
Ping(Vec<u8>)
A ping message - should be responded to with a pong message. Usually the pong message will be sent with the same data as the received ping message.
Pong(Vec<u8>)
A pong message, sent in response to a Ping message, usually containing the same data as the received ping message.
Implementations§
Source§impl OwnedMessage
impl OwnedMessage
Sourcepub fn is_close(&self) -> bool
pub fn is_close(&self) -> bool
Checks if this message is a close message.
assert!(OwnedMessage::Close(None).is_close());
Sourcepub fn is_control(&self) -> bool
pub fn is_control(&self) -> bool
Checks if this message is a control message.
Control messages are either Close
, Ping
, or Pong
.
assert!(OwnedMessage::Ping(vec![]).is_control());
assert!(OwnedMessage::Pong(vec![]).is_control());
assert!(OwnedMessage::Close(None).is_control());
Sourcepub fn is_data(&self) -> bool
pub fn is_data(&self) -> bool
Checks if this message is a data message.
Data messages are either Text
or Binary
.
assert!(OwnedMessage::Text("1337".to_string()).is_data());
assert!(OwnedMessage::Binary(vec![]).is_data());
Trait Implementations§
Source§impl Clone for OwnedMessage
impl Clone for OwnedMessage
Source§fn clone(&self) -> OwnedMessage
fn clone(&self) -> OwnedMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl DataFrame for OwnedMessage
impl DataFrame for OwnedMessage
Source§fn write_payload(&self, socket: &mut dyn Write) -> WebSocketResult<()>
fn write_payload(&self, socket: &mut dyn Write) -> WebSocketResult<()>
Source§fn take_payload(self) -> Vec<u8>
fn take_payload(self) -> Vec<u8>
Source§fn frame_size(&self, masked: bool) -> usize
fn frame_size(&self, masked: bool) -> usize
Source§impl Debug for OwnedMessage
impl Debug for OwnedMessage
Source§impl<'m> From<Message<'m>> for OwnedMessage
impl<'m> From<Message<'m>> for OwnedMessage
Source§impl<'m> From<OwnedMessage> for Message<'m>
impl<'m> From<OwnedMessage> for Message<'m>
Source§fn from(message: OwnedMessage) -> Self
fn from(message: OwnedMessage) -> Self
Source§impl From<String> for OwnedMessage
impl From<String> for OwnedMessage
Source§impl Message for OwnedMessage
impl Message for OwnedMessage
Source§fn serialize(&self, writer: &mut dyn Write, masked: bool) -> WebSocketResult<()>
fn serialize(&self, writer: &mut dyn Write, masked: bool) -> WebSocketResult<()>
Attempt to form a message from a series of data frames
Source§fn message_size(&self, masked: bool) -> usize
fn message_size(&self, masked: bool) -> usize
Returns how many bytes this message will take up
Source§fn from_dataframes<D>(frames: Vec<D>) -> WebSocketResult<Self>where
D: DataFrameTrait,
fn from_dataframes<D>(frames: Vec<D>) -> WebSocketResult<Self>where
D: DataFrameTrait,
Attempt to form a message from a series of data frames