//! HTTP body handling module for processing request and response payloads
//!
//! This module provides functionality for encoding and decoding HTTP message bodies
//! using different transfer strategies. It supports both chunked transfer encoding
//! and content-length based transfers.
//!
//! # Components
//!
//! ## Decoders
//! - [`chunked_decoder::ChunkedDecoder`]: Handles chunked transfer encoded payloads
//! - [`length_decoder::LengthDecoder`]: Processes fixed-length payloads
//! - [`payload_decoder::PayloadDecoder`]: Main decoder that coordinates different decoding strategies
//!
//! ## Encoders
//! - [`chunked_encoder::ChunkedEncoder`]: Implements chunked transfer encoding
//! - [`length_encoder::LengthEncoder`]: Handles fixed-length payload encoding
//! - [`payload_encoder::PayloadEncoder`]: Main encoder that manages different encoding strategies
//!
//! # Features
//!
//! - Support for chunked transfer encoding (RFC 7230)
//! - Content-Length based payload handling
//! - Streaming processing of message bodies
//! - Efficient memory usage through BytesMut
//! - State machine based processing
pub use PayloadDecoder;
pub use PayloadEncoder;