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 payload_mut(&mut self) -> &mut Vec<u8>
pub fn payload_mut(&mut self) -> &mut Vec<u8>
Get a mutable reference to the frame’s payload.
Sourcepub fn into_string(self) -> StdResult<String, FromUtf8Error>
pub fn into_string(self) -> StdResult<String, FromUtf8Error>
Consume the frame into its payload as string.
Sourcepub fn message(data: Vec<u8>, opcode: OpCode, is_final: bool) -> Frame
pub fn message(data: Vec<u8>, 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: Vec<u8>) -> Self
pub fn from_payload(header: FrameHeader, payload: Vec<u8>) -> 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)