Struct tokio_codec::BytesCodec [−][src]
pub struct BytesCodec(_);
A simple Codec
implementation that just ships bytes around.
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]
pub 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>
pub fn framed<T>(self, io: T) -> Framed<T, Self> where
Self: Encoder,
T: AsyncRead + AsyncWrite,
[src]
Self: Encoder,
T: AsyncRead + AsyncWrite,
impl Encoder for BytesCodec
[src]
impl Encoder 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]