File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1010//! - **The [`Body`](Body) trait** describes all possible bodies.
1111//! hyper allows any body type that implements `Body`, allowing
1212//! applications to have fine-grained control over their streaming.
13- //! - **The [`Incoming`](Incoming) concrete type**, which is an implementation of
14- //! `Body`, and returned by hyper as a "receive stream" (so, for server
13+ //! - **The [`Incoming`](Incoming) concrete type**, which is an implementation
14+ //! of `Body`, and returned by hyper as a "receive stream" (so, for server
1515//! requests and client responses).
16+ //!
17+ //! There are additional implementations available in [`http-body-util`][],
18+ //! such as a `Full` or `Empty` body.
19+ //!
20+ //! [`http-body-util`]: https://docs.rs/http-body-util
1621
1722pub use bytes:: { Buf , Bytes } ;
1823pub use http_body:: Body ;
You can’t perform that action at this time.
0 commit comments