//! Types and utilities for working with `Body`.
modinto_buf_stream;pubuseself::into_buf_stream::IntoBufStream;usehttp_body::Body;/// An extension trait for `Body` providing additional adapters.
pubtraitBodyExt: Body {/// Wrap the `Body` so that it implements tokio_buf::BufStream directly.
fninto_buf_stream(self)->IntoBufStream<Self>whereSelf: Sized,
{IntoBufStream::new(self)}}impl<T: Body> BodyExt forT{}