[][src]Struct simple_message_channels::Writer

pub struct Writer<W> { /* fields omitted */ }

A writer for SMC messages.

Consumes an futures::io::AsyncWrite to which messages will be written.

Methods

impl<W> Writer<W> where
    W: AsyncWrite + Unpin
[src]

pub fn new(writer: W) -> Self[src]

Create a new message writer.

pub async fn send<'_>(&'_ mut self, message: Message) -> Result<(), Error>[src]

Send a message.

This encodes the message, writes it and flushes the writer.

pub async fn send_batch<'_>(
    &'_ mut self,
    messages: Vec<Message>
) -> Result<(), Error>
[src]

Send a batch of messages.

This works like Writer::send but flushes after all messages are written.

Auto Trait Implementations

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

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

impl<W> Unpin for Writer<W> where
    W: Unpin

impl<W> UnwindSafe for Writer<W> where
    W: UnwindSafe

impl<W> RefUnwindSafe for Writer<W> where
    W: RefUnwindSafe

Blanket Implementations

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

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

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

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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