Struct soketto::base::Codec

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

Codec for encoding/decoding websocket base frames.

Implementations§

source§

impl Codec

source

pub fn new() -> Self

Create a new base frame codec.

The codec will support decoding payload lengths up to 256 MiB (use set_max_data_size to change this value).

source

pub fn max_data_size(&self) -> usize

Get the configured maximum payload length.

source

pub fn set_max_data_size(&mut self, size: usize) -> &mut Self

Limit the maximum size of payload data to size bytes.

source

pub fn reserved_bits(&self) -> (bool, bool, bool)

The reserved bits currently configured.

source

pub fn add_reserved_bits(&mut self, bits: (bool, bool, bool)) -> &mut Self

Add to the reserved bits in use.

source

pub fn clear_reserved_bits(&mut self)

Reset the reserved bits.

source

pub fn decode_header( &self, bytes: &[u8], ) -> Result<Parsing<Header, usize>, Error>

Decode a websocket frame header.

source

pub fn encode_header(&mut self, header: &Header) -> &[u8]

Encode a websocket frame header.

source

pub fn apply_mask(header: &Header, data: &mut [u8])

Use the given header’s mask and apply it to the data.

Trait Implementations§

source§

impl Clone for Codec

source§

fn clone(&self) -> Codec

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 Codec

source§

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

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

impl Default for Codec

source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl Freeze for Codec

§

impl RefUnwindSafe for Codec

§

impl Send for Codec

§

impl Sync for Codec

§

impl Unpin for Codec

§

impl UnwindSafe for Codec

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§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> 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.
source§

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

source§

fn vzip(self) -> V