pub struct Receiver { /* private fields */ }
Expand description

A Receiver that wraps a Reader and provides a default implementation using DataFrames and Messages.

Implementations§

source§

impl Receiver

source

pub fn new(mask: bool) -> Receiver

Create a new Receiver using the specified Reader.

Uses built-in limits for dataframe and message sizes.

source

pub fn new_with_limits( mask: bool, max_dataframe_size: usize, max_message_size: usize ) -> Receiver

Create a new Receiver using the specified Reader, with configurable limits

Sizes should not be larger than u32::MAX.

Note that max_message_size denotes message size where no new dataframes would be read, so actual maximum message size is larger.

Trait Implementations§

source§

impl Receiver for Receiver

source§

fn recv_dataframe<R>(&mut self, reader: &mut R) -> WebSocketResult<DataFrame>
where R: Read,

Reads a single data frame from the remote endpoint.

source§

fn recv_message_dataframes<R>( &mut self, reader: &mut R ) -> WebSocketResult<Vec<DataFrame>>
where R: Read,

Returns the data frames that constitute one message.

§

type F = DataFrame

The type of dataframe that incoming messages will be serialized to.
§

type M = OwnedMessage

The type of message that incoming messages will be serialized to.
source§

fn incoming_dataframes<'a, R>( &'a mut self, reader: &'a mut R ) -> DataFrameIterator<'a, Self, R>
where R: Read,

Returns an iterator over incoming data frames.
source§

fn recv_message<R>(&mut self, reader: &mut R) -> Result<Self::M, WebSocketError>
where R: Read,

Reads a single message from this receiver.
source§

fn incoming_messages<'a, R>( &'a mut self, reader: &'a mut R ) -> MessageIterator<'a, Self, R>
where R: Read,

Returns an iterator over incoming messages.

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, 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, 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<T> Typeable for T
where T: Any,

source§

fn get_type(&self) -> TypeId

Get the TypeId of this object.