Struct async_prost::AsyncProstWriter[][src]

pub struct AsyncProstWriter<W, T, D> { /* fields omitted */ }

A warpper around an async sink that accepts, serializes, and sends prost-encoded values.

Implementations

impl<W, T, D> AsyncProstWriter<W, T, D>[src]

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

create a new async prost writer

pub fn get_ref(&self) -> &W[src]

Gets a reference to the underlying writer.

pub fn get_mut(&mut self) -> &mut W[src]

Gets a mutable reference to the underlying writer.

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

Unwraps this AsyncProstWriter, returning the underlying writer.

Note that any leftover serialized data that has not yet been sent is lost.

impl<W, T> AsyncProstWriter<W, T, SyncDestination>[src]

pub fn for_async(self) -> AsyncProstWriter<W, T, AsyncDestination>[src]

make this writer include the serialized data’s size before each serialized value.

pub fn for_async_framed(self) -> AsyncProstWriter<W, T, AsyncFrameDestination>[src]

make this writer include the serialized data’s header and body size before serialized value

Trait Implementations

impl<W: Debug, T: Debug, D: Debug> Debug for AsyncProstWriter<W, T, D>[src]

impl<W, T> Default for AsyncProstWriter<W, T, SyncDestination> where
    W: Default
[src]

impl<W, T> From<W> for AsyncProstWriter<W, T, SyncDestination>[src]

impl<W, T, D> Sink<T> for AsyncProstWriter<W, T, D> where
    W: AsyncWrite + Unpin,
    Self: ProstWriterFor<T>, 
[src]

type Error = Error

The type of value produced by the sink when an error occurs.

impl<W, T, D> Unpin for AsyncProstWriter<W, T, D>[src]

Auto Trait Implementations

impl<W, T, D> RefUnwindSafe for AsyncProstWriter<W, T, D> where
    D: RefUnwindSafe,
    T: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, T, D> Send for AsyncProstWriter<W, T, D> where
    D: Send,
    T: Send,
    W: Send

impl<W, T, D> Sync for AsyncProstWriter<W, T, D> where
    D: Sync,
    T: Sync,
    W: Sync

impl<W, T, D> UnwindSafe for AsyncProstWriter<W, T, D> where
    D: UnwindSafe,
    T: UnwindSafe,
    W: UnwindSafe

Blanket Implementations

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

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

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

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

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 = Infallible

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.