[][src]Struct websocket::receiver::Reader

pub struct Reader<R> where
    R: Read
{ pub stream: BufReader<R>, pub receiver: Receiver, }
[]

This reader bundles an existing stream with a parsing algorithm. It is used by the client in its .split() function as the reading component.

Fields

[]

the stream to be read from

[]

the parser to parse bytes into messages

Methods

impl<R> Reader<R> where
    R: Read
[src]
[]

[]

Reads a single data frame from the remote endpoint.

Important traits for DataFrameIterator<'a, Recv, R>
[]

Returns an iterator over incoming data frames.

[]

Reads a single message from this receiver.

Important traits for MessageIterator<'a, Recv, R>
[]

An iterator over incoming messsages. This iterator will block until new messages arrive and will never halt.

impl<S> Reader<S> where
    S: AsTcpStream + Stream + Read
[src]
[]

[]

Closes the receiver side of the connection, will cause all pending and future IO to return immediately with an appropriate value.

[]

Shuts down both Sender and Receiver, will cause all pending and future IO to return immediately with an appropriate value.

Auto Trait Implementations

impl<R> Send for Reader<R> where
    R: Send

impl<R> Sync for Reader<R> where
    R: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]
[]

[]

Performs the conversion.

impl<T> From for T
[src]
[]

[]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]
[]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

[]

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]
[]

[]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]
[]

[]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]
[]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

[]

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]
[]

[]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Typeable for T where
    T: Any
[src]
[]

[]

Get the TypeId of this object.

impl<T> Erased for T
[src]