diff --git a/src/body/body.rs b/src/body/body.rs index 1be2c1b0c2..a1ac6ad3b6 100644 --- a/src/body/body.rs +++ b/src/body/body.rs @@ -29,6 +29,9 @@ type TrailersSender = oneshot::Sender; /// /// A good default [`HttpBody`](crate::body::HttpBody) to use in many /// applications. +/// +/// Note: To read the full body, use [`body::to_bytes`](crate::body::to_bytes) +/// or [`body::aggregate`](crate::body::aggregate). #[must_use = "streams do nothing unless polled"] pub struct Body { kind: Kind,