1//! Experimental body types. 2//! 3//! Analogous to the `body` module in Actix Web. 4 5pub use crate::{ 6 body_async_write::{writer, Writer}, 7 body_channel::{channel, Sender}, 8 infallible_body_stream::{new_infallible_body_stream, new_infallible_sized_stream}, 9};