pub struct Frame { /* private fields */ }
Expand description
A struct representing a WebSocket frame.
Implementations§
Source§impl Frame
impl Frame
Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Get the length of the frame. This is the length of the header + the length of the payload.
Sourcepub fn header(&self) -> &FrameHeader
pub fn header(&self) -> &FrameHeader
Get a reference to the frame’s header.
Sourcepub fn header_mut(&mut self) -> &mut FrameHeader
pub fn header_mut(&mut self) -> &mut FrameHeader
Get a mutable reference to the frame’s header.
Sourcepub fn into_text(self) -> StdResult<Utf8Bytes, Utf8Error>
pub fn into_text(self) -> StdResult<Utf8Bytes, Utf8Error>
Consume the frame into its payload as string.
Sourcepub fn into_payload(self) -> Bytes
pub fn into_payload(self) -> Bytes
Consume the frame into its payload.
Sourcepub fn message(data: impl Into<Bytes>, opcode: OpCode, is_final: bool) -> Frame
pub fn message(data: impl Into<Bytes>, opcode: OpCode, is_final: bool) -> Frame
Create a new data frame.
Sourcepub fn close(msg: Option<CloseFrame>) -> Frame
pub fn close(msg: Option<CloseFrame>) -> Frame
Create a new Close control frame.
Sourcepub fn from_payload(header: FrameHeader, payload: Bytes) -> Self
pub fn from_payload(header: FrameHeader, payload: Bytes) -> Self
Create a frame from given header and data.
Trait Implementations§
impl Eq for Frame
impl StructuralPartialEq for Frame
Auto Trait Implementations§
impl !Freeze for Frame
impl RefUnwindSafe for Frame
impl Send for Frame
impl Sync for Frame
impl Unpin for Frame
impl UnwindSafe for Frame
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more