[][src]Struct framed::bytes::Sender

pub struct Sender<W: Write> { /* fields omitted */ }

Sends encoded frames over an inner std::io::Write instance.

Construct an instance using the method Config::to_sender

Methods

impl<W: Write> Sender<W>[src]

pub fn into_inner(self) -> W[src]

Consume this Sender and return the inner std::io::Write.

pub fn flush(&mut self) -> Result<()>[src]

Flush all buffered data. Includes calling flush on the inner writer.

pub fn queue(&mut self, p: &Payload) -> Result<usize>[src]

Queue the supplied payload for transmission.

This Sender may buffer the data indefinitely, as may the inner writer. To ensure all buffered data has been transmitted call flush.

See also: send

pub fn send(&mut self, p: &Payload) -> Result<usize>[src]

Encode the supplied payload as a frame, write it to the inner writer, then flush.

Ensures the data has been transmitted before returning to the caller.

See also: queue

Auto Trait Implementations

impl<W> Send for Sender<W> where
    W: Send

impl<W> Sync for Sender<W> where
    W: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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