Struct ws_tool::frame::OwnedFrame

source ·
pub struct OwnedFrame { /* private fields */ }
Expand description

owned frame

Implementations§

source§

impl OwnedFrame

source

pub fn new(code: OpCode, mask: impl Into<Option<[u8; 4]>>, data: &[u8]) -> Self

construct new owned frame

source

pub fn with_raw(header: Header, payload: BytesMut) -> Self

use constructed header and payload

NOTE: this will not check header and payload

source

pub fn text_frame(mask: impl Into<Option<[u8; 4]>>, data: &str) -> Self

helper function to construct a text frame

source

pub fn binary_frame(mask: impl Into<Option<[u8; 4]>>, data: &[u8]) -> Self

helper function to construct a binary frame

source

pub fn ping_frame(mask: impl Into<Option<[u8; 4]>>, data: &[u8]) -> Self

helper function to construct a ping frame

source

pub fn pong_frame(mask: impl Into<Option<[u8; 4]>>, data: &[u8]) -> Self

helper function to construct a pong frame

source

pub fn close_frame( mask: impl Into<Option<[u8; 4]>>, code: impl Into<Option<u16>>, data: &[u8] ) -> Self

helper function to construct a close frame

source

pub fn unmask(&mut self) -> Option<[u8; 4]>

unmask frame if masked

source

pub fn mask(&mut self, mask: [u8; 4])

mask frame with provide mask key

this will override old mask

source

pub fn extend_from_slice(&mut self, data: &[u8])

extend frame payload

NOTE this function will unmask first, and then extend payload, mask with old mask key finally

source

pub fn header(&self) -> &Header

get frame header

source

pub fn header_mut(&mut self) -> &mut Header

get mutable frame header

source

pub fn payload(&self) -> &BytesMut

get payload

source

pub fn parts(self) -> (Header, BytesMut)

consume frame return header and payload

Trait Implementations§

source§

impl Clone for OwnedFrame

source§

fn clone(&self) -> OwnedFrame

Returns a copy 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 OwnedFrame

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

§

type Output = T

Should always be Self
source§

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

§

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more