Struct websocket_base::message::Message
source · [−]pub struct Message<'a> {
pub opcode: Type,
pub cd_status_code: Option<u16>,
pub payload: Cow<'a, [u8]>,
}
Expand description
Represents a WebSocket message.
This message also has the ability to not own its payload, and stores its entire payload in
chunks that get written in order when the message gets sent. This makes the write_payload
allocate less memory than the payload
method (which creates a new buffer every time).
Incidentally this (the default implementation of Message
) implements the DataFrame
trait
because this message just gets sent as one single DataFrame
.
Fields
opcode: Type
Type of WebSocket message
cd_status_code: Option<u16>
Optional status code to send when closing a connection. (only used if this message is of Type::Close)
payload: Cow<'a, [u8]>
Main payload
Implementations
sourceimpl<'a> Message<'a>
impl<'a> Message<'a>
sourcepub fn text<S>(data: S) -> Self where
S: Into<Cow<'a, str>>,
pub fn text<S>(data: S) -> Self where
S: Into<Cow<'a, str>>,
Create a new WebSocket message with text data
sourcepub fn binary<B>(data: B) -> Self where
B: IntoCowBytes<'a>,
pub fn binary<B>(data: B) -> Self where
B: IntoCowBytes<'a>,
Create a new WebSocket message with binary data
sourcepub fn close() -> Self
pub fn close() -> Self
Create a new WebSocket message that signals the end of a WebSocket connection, although messages can still be sent after sending this
sourcepub fn close_because<S>(code: u16, reason: S) -> Self where
S: Into<Cow<'a, str>>,
pub fn close_because<S>(code: u16, reason: S) -> Self where
S: Into<Cow<'a, str>>,
Create a new WebSocket message that signals the end of a WebSocket connection and provide a text reason and a status code for why. Messages can still be sent after sending this message.
sourcepub fn ping<P>(data: P) -> Self where
P: IntoCowBytes<'a>,
pub fn ping<P>(data: P) -> Self where
P: IntoCowBytes<'a>,
Create a ping WebSocket message, a pong is usually sent back after sending this with the same data
sourcepub fn pong<P>(data: P) -> Self where
P: IntoCowBytes<'a>,
pub fn pong<P>(data: P) -> Self where
P: IntoCowBytes<'a>,
Create a pong WebSocket message, usually a response to a ping message
Trait Implementations
sourceimpl<'a> DataFrame for Message<'a>
impl<'a> DataFrame for Message<'a>
sourcefn write_payload(&self, socket: &mut dyn Write) -> WebSocketResult<()>
fn write_payload(&self, socket: &mut dyn Write) -> WebSocketResult<()>
Write the payload to a writer
sourcefn take_payload(self) -> Vec<u8>
fn take_payload(self) -> Vec<u8>
Takes the payload out into a vec
sourcefn frame_size(&self, masked: bool) -> usize
fn frame_size(&self, masked: bool) -> usize
Get’s the size of the entire dataframe in bytes, i.e. header and payload. Read more
sourceimpl<'m> From<Message<'m>> for OwnedMessage
impl<'m> From<Message<'m>> for OwnedMessage
sourceimpl<'m> From<OwnedMessage> for Message<'m>
impl<'m> From<OwnedMessage> for Message<'m>
sourcefn from(message: OwnedMessage) -> Self
fn from(message: OwnedMessage) -> Self
Converts to this type from the input type.
sourceimpl<'a> Message for Message<'a>
impl<'a> Message for Message<'a>
sourcefn 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
sourcefn message_size(&self, masked: bool) -> usize
fn message_size(&self, masked: bool) -> usize
Returns how many bytes this message will take up
sourcefn 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
impl<'a> Eq for Message<'a>
impl<'a> StructuralEq for Message<'a>
impl<'a> StructuralPartialEq for Message<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Message<'a>
impl<'a> Send for Message<'a>
impl<'a> Sync for Message<'a>
impl<'a> Unpin for Message<'a>
impl<'a> UnwindSafe for Message<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more