Skip to main content

http_body_util/combinators/
mod.rs

1//! Combinators for the `Body` trait.
2
3mod box_body;
4mod collect;
5mod frame;
6mod fuse;
7mod inspect_err;
8mod inspect_frame;
9mod map_err;
10mod map_frame;
11mod with_trailers;
12
13pub use self::{
14    box_body::{BoxBody, UnsyncBoxBody},
15    collect::Collect,
16    frame::Frame,
17    fuse::Fuse,
18    inspect_err::InspectErr,
19    inspect_frame::InspectFrame,
20    map_err::MapErr,
21    map_frame::MapFrame,
22    with_trailers::WithTrailers,
23};