2018-10-05 22:07:09 +02:00
|
|
|
//! Utilities for encoding and decoding frames.
|
|
|
|
//!
|
|
|
|
//! Contains adapters to go from streams of bytes, [`AsyncRead`] and
|
|
|
|
//! [`AsyncWrite`], to framed streams implementing [`Sink`] and [`Stream`].
|
|
|
|
//! Framed streams are also known as [transports].
|
|
|
|
//!
|
|
|
|
//! [`AsyncRead`]: #
|
|
|
|
//! [`AsyncWrite`]: #
|
|
|
|
//! [`Sink`]: #
|
|
|
|
//! [`Stream`]: #
|
|
|
|
//! [transports]: #
|
2019-12-02 17:30:09 +01:00
|
|
|
#![deny(rust_2018_idioms, warnings)]
|
|
|
|
#![allow(clippy::type_complexity)]
|
2018-10-05 22:07:09 +02:00
|
|
|
|
2018-10-24 19:43:30 +02:00
|
|
|
mod bcodec;
|
2018-10-05 22:07:09 +02:00
|
|
|
mod framed;
|
|
|
|
|
2018-10-24 19:43:30 +02:00
|
|
|
pub use self::bcodec::BytesCodec;
|
2018-10-05 22:07:09 +02:00
|
|
|
pub use self::framed::{Framed, FramedParts};
|
2018-12-10 00:19:25 +01:00
|
|
|
|
|
|
|
pub use tokio_codec::{Decoder, Encoder};
|
|
|
|
pub use tokio_io::{AsyncRead, AsyncWrite};
|