Struct tokio_util::codec::BytesCodec [−][src]
pub struct BytesCodec(_);
A simple Decoder
and Encoder
implementation that just ships bytes around.
Example
Turn an AsyncRead
into a stream of Result<
BytesMut
,
Error
>
.
use tokio::fs::File; use tokio::io::AsyncRead; use tokio_util::codec::{FramedRead, BytesCodec}; let my_async_read = File::open("filename.txt").await?; let my_stream_of_bytes = FramedRead::new(my_async_read, BytesCodec::new());
Implementations
impl BytesCodec
[src]
impl BytesCodec
[src]pub fn new() -> BytesCodec
[src]
Creates a new BytesCodec
for shipping around raw bytes.
Trait Implementations
impl Clone for BytesCodec
[src]
impl Clone for BytesCodec
[src]fn clone(&self) -> BytesCodec
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Decoder for BytesCodec
[src]
impl Decoder for BytesCodec
[src]type Item = BytesMut
The type of decoded frames.
type Error = Error
The type of unrecoverable frame decoding errors. Read more
fn decode(&mut self, buf: &mut BytesMut) -> Result<Option<BytesMut>, Error>
[src]
fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
fn framed<T: AsyncRead + AsyncWrite + Sized>(self, io: T) -> Framed<T, Self> where
Self: Sized,
[src]
Self: Sized,
impl Default for BytesCodec
[src]
impl Default for BytesCodec
[src]fn default() -> BytesCodec
[src]
impl Encoder<Bytes> for BytesCodec
[src]
impl Encoder<Bytes> for BytesCodec
[src]impl Hash for BytesCodec
[src]
impl Hash for BytesCodec
[src]impl Ord for BytesCodec
[src]
impl Ord for BytesCodec
[src]impl PartialEq<BytesCodec> for BytesCodec
[src]
impl PartialEq<BytesCodec> for BytesCodec
[src]fn eq(&self, other: &BytesCodec) -> bool
[src]
fn ne(&self, other: &BytesCodec) -> bool
[src]
impl PartialOrd<BytesCodec> for BytesCodec
[src]
impl PartialOrd<BytesCodec> for BytesCodec
[src]