Struct Frame

Source
pub struct Frame { /* private fields */ }
Expand description

A struct representing a WebSocket frame.

Implementations§

Source§

impl Frame

Source

pub fn len(&self) -> usize

Get the length of the frame. This is the length of the header + the length of the payload.

Source

pub fn is_final(&self) -> bool

Test whether the frame is a final frame.

Source

pub fn has_rsv1(&self) -> bool

Test whether the first reserved bit is set.

Source

pub fn has_rsv2(&self) -> bool

Test whether the second reserved bit is set.

Source

pub fn has_rsv3(&self) -> bool

Test whether the third reserved bit is set.

Source

pub fn opcode(&self) -> OpCode

Get the OpCode of the frame.

Source

pub fn is_control(&self) -> bool

Test whether this is a control frame.

Source

pub fn payload(&self) -> &Vec<u8>

Get a reference to the frame’s payload.

Source

pub fn set_final(&mut self, is_final: bool) -> &mut Frame

Make this frame a final frame.

Source

pub fn set_rsv1(&mut self, has_rsv1: bool) -> &mut Frame

Set the first reserved bit.

Source

pub fn set_rsv2(&mut self, has_rsv2: bool) -> &mut Frame

Set the second reserved bit.

Source

pub fn set_rsv3(&mut self, has_rsv3: bool) -> &mut Frame

Set the third reserved bit.

Source

pub fn set_opcode(&mut self, opcode: OpCode) -> &mut Frame

Set the OpCode.

Source

pub fn payload_mut(&mut self) -> &mut Vec<u8>

Edit the frame’s payload.

Source

pub fn into_data(self) -> Vec<u8>

Consume the frame into its payload.

Source

pub fn message(data: Vec<u8>, code: OpCode, finished: bool) -> Frame

Create a new data frame.

Source

pub fn pong(data: Vec<u8>) -> Frame

Create a new Pong control frame.

Source

pub fn ping(data: Vec<u8>) -> Frame

Create a new Ping control frame.

Source

pub fn close(code: CloseCode, reason: &str) -> Frame

Create a new Close control frame.

Source

pub fn parse(cursor: &mut Cursor<Vec<u8>>) -> Result<Option<Frame>>

Parse the input stream into a frame.

Source

pub fn format<W>(&mut self, w: &mut W) -> Result<()>
where W: Write,

Write a frame out to a buffer

Trait Implementations§

Source§

impl Clone for Frame

Source§

fn clone(&self) -> Frame

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Frame

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Frame

Source§

fn default() -> Frame

Returns the “default value” for a type. Read more
Source§

impl Display for Frame

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.