pub struct Frame { /* private fields */ }Expand description
The 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 new_data(data: impl Into<Bytes>, opcode: OpCode, fin: bool) -> Frame
pub fn new_data(data: impl Into<Bytes>, opcode: OpCode, fin: bool) -> Frame
Create a new data frame.
Sourcepub fn new_close(msg: Option<CloseFrame>) -> Frame
pub fn new_close(msg: Option<CloseFrame>) -> Frame
Create a new Close control frame.
Sourcepub fn new(header: FrameHeader, payload: Bytes) -> Self
pub fn new(header: FrameHeader, payload: Bytes) -> Self
Initializes a new frame
Sourcepub fn format_to_buf(self, output: &mut impl Write) -> Result<()>
pub fn format_to_buf(self, output: &mut impl Write) -> Result<()>
Write a frame out to a buffer
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