http_body_util/combinators/mod.rs
1//! Combinators for the `Body` trait.
2
3mod box_body;
4mod collect;
5mod frame;
6mod map_err;
7mod map_frame;
8mod with_trailers;
9
10pub use self::{
11 box_body::{BoxBody, UnsyncBoxBody},
12 collect::Collect,
13 frame::Frame,
14 map_err::MapErr,
15 map_frame::MapFrame,
16 with_trailers::WithTrailers,
17};