Boxed body type for uniform handling.
| 778 | |
| 779 | /// Boxed body type for uniform handling. |
| 780 | pub struct BoxBody( |
| 781 | http_body_util::combinators::UnsyncBoxBody<Bytes, Box<dyn std::error::Error + Send + Sync>>, |
| 782 | ); |
| 783 | |
| 784 | impl Body for BoxBody { |
| 785 | type Data = Bytes; |