1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-12-19 13:12:39 +01:00
actix-net/actix-codec/src/lib.rs

19 lines
529 B
Rust
Raw Normal View History

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`]: #
2019-12-02 17:30:09 +01:00
#![deny(rust_2018_idioms, warnings)]
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::io::{AsyncRead, AsyncWrite};
pub use tokio_util::codec::{Decoder, Encoder};