Struct tokio_serde::FramedWrite
source · pub struct FramedWrite<T, U, S>where
T: Sink,{ /* private fields */ }
Expand description
Adapts a buffer sink to a value sink by serializing the values.
The provided buffer sink will received buffer values containing the
serialized value. Each buffer contains exactly one value. This sink will be
responsible for writing these buffers to an AsyncWrite
using some sort of
framing strategy. The specific framing strategy is left up to the
implementor. One option would be to use length_delimited provided by
tokio-io.
Implementations§
source§impl<T, U, S> FramedWrite<T, U, S>where
T: Sink<SinkItem = Bytes>,
S: Serializer<U>,
S::Error: Into<T::SinkError>,
impl<T, U, S> FramedWrite<T, U, S>where
T: Sink<SinkItem = Bytes>,
S: Serializer<U>,
S::Error: Into<T::SinkError>,
source§impl<T: Sink, U, S> FramedWrite<T, U, S>
impl<T: Sink, U, S> FramedWrite<T, U, S>
sourcepub fn get_ref(&self) -> &T
pub fn get_ref(&self) -> &T
Returns a reference to the underlying sink wrapped by FramedWrite
.
Note that care should be taken to not tamper with the underlying sink as it may corrupt the sequence of frames otherwise being worked with.
sourcepub fn get_mut(&mut self) -> &mut T
pub fn get_mut(&mut self) -> &mut T
Returns a mutable reference to the underlying sink wrapped by
FramedWrite
.
Note that care should be taken to not tamper with the underlying sink as it may corrupt the sequence of frames otherwise being worked with.
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the FramedWrite
, returning its underlying sink.
Note that care should be taken to not tamper with the underlying sink as it may corrupt the sequence of frames otherwise being worked with.
Trait Implementations§
source§impl<T, U, S> Sink for FramedWrite<T, U, S>where
T: Sink<SinkItem = Bytes>,
S: Serializer<U>,
S::Error: Into<T::SinkError>,
impl<T, U, S> Sink for FramedWrite<T, U, S>where
T: Sink<SinkItem = Bytes>,
S: Serializer<U>,
S::Error: Into<T::SinkError>,
§type SinkError = <T as Sink>::SinkError
type SinkError = <T as Sink>::SinkError
source§fn start_send(
&mut self,
item: Self::SinkItem
) -> StartSend<Self::SinkItem, Self::SinkError>
fn start_send(
&mut self,
item: Self::SinkItem
) -> StartSend<Self::SinkItem, Self::SinkError>
source§fn poll_complete(&mut self) -> Poll<(), Self::SinkError>
fn poll_complete(&mut self) -> Poll<(), Self::SinkError>
source§fn close(&mut self) -> Poll<(), Self::SinkError>
fn close(&mut self) -> Poll<(), Self::SinkError>
source§fn wait(self) -> Wait<Self>where
Self: Sized,
fn wait(self) -> Wait<Self>where
Self: Sized,
source§fn with<U, F, Fut>(self, f: F) -> With<Self, U, F, Fut>where
F: FnMut(U) -> Fut,
Fut: IntoFuture<Item = Self::SinkItem>,
<Fut as IntoFuture>::Error: From<Self::SinkError>,
Self: Sized,
fn with<U, F, Fut>(self, f: F) -> With<Self, U, F, Fut>where
F: FnMut(U) -> Fut,
Fut: IntoFuture<Item = Self::SinkItem>,
<Fut as IntoFuture>::Error: From<Self::SinkError>,
Self: Sized,
source§fn with_flat_map<U, F, St>(self, f: F) -> WithFlatMap<Self, U, F, St>where
F: FnMut(U) -> St,
St: Stream<Item = Self::SinkItem, Error = Self::SinkError>,
Self: Sized,
fn with_flat_map<U, F, St>(self, f: F) -> WithFlatMap<Self, U, F, St>where
F: FnMut(U) -> St,
St: Stream<Item = Self::SinkItem, Error = Self::SinkError>,
Self: Sized,
source§fn sink_map_err<F, E>(self, f: F) -> SinkMapErr<Self, F>where
F: FnOnce(Self::SinkError) -> E,
Self: Sized,
fn sink_map_err<F, E>(self, f: F) -> SinkMapErr<Self, F>where
F: FnOnce(Self::SinkError) -> E,
Self: Sized,
source§fn sink_from_err<E>(self) -> SinkFromErr<Self, E>where
E: From<Self::SinkError>,
Self: Sized,
fn sink_from_err<E>(self) -> SinkFromErr<Self, E>where
E: From<Self::SinkError>,
Self: Sized,
From
for this sink’s
Error
, returning a new sink. Read more