[−][src]Struct asynchronous_codec::BytesCodec
A simple codec that ships bytes around
Example
use bytes::Bytes; use futures::{SinkExt, TryStreamExt}; use futures::io::Cursor; use asynchronous_codec::{BytesCodec, Framed}; let mut buf = vec![]; // Cursor implements AsyncRead and AsyncWrite let cur = Cursor::new(&mut buf); let mut framed = Framed::new(cur, BytesCodec); framed.send(Bytes::from("Hello World!")).await?; while let Some(bytes) = framed.try_next().await? { dbg!(bytes); }
Trait Implementations
impl Decoder for BytesCodec
[src]
type Item = Bytes
The type of items returned by decode
type Error = Error
The type of decoding errors.
pub fn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
pub fn decode_eof(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
impl Encoder for BytesCodec
[src]
Auto Trait Implementations
impl RefUnwindSafe for BytesCodec
[src]
impl Send for BytesCodec
[src]
impl Sync for BytesCodec
[src]
impl Unpin for BytesCodec
[src]
impl UnwindSafe for BytesCodec
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,