http-body-util 0.1.4

Combinators and adapters for HTTP request or response bodies.
//! Combinators for the `Body` trait.

mod box_body;
mod collect;
mod frame;
mod fuse;
mod inspect_err;
mod inspect_frame;
mod map_err;
mod map_frame;
mod with_trailers;

pub use self::{
    box_body::{BoxBody, UnsyncBoxBody},
    collect::Collect,
    frame::Frame,
    fuse::Fuse,
    inspect_err::InspectErr,
    inspect_frame::InspectFrame,
    map_err::MapErr,
    map_frame::MapFrame,
    with_trailers::WithTrailers,
};