File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 10
10
//! - **The [`Body`](Body) trait** describes all possible bodies.
11
11
//! hyper allows any body type that implements `Body`, allowing
12
12
//! 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
15
15
//! 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
16
21
17
22
pub use bytes:: { Buf , Bytes } ;
18
23
pub use http_body:: Body ;
You can’t perform that action at this time.
0 commit comments