/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
//! HTTP body utilities.
pub use Body as HttpBody;
pub use Body;
// `boxed` is used in the codegen of the implementation of the operation `Handler` trait.
pub use ;
pub
/// Convert anything that can be converted into a [`hyper::body::Body`] into a [`BoxBody`].
/// This simplifies codegen a little bit.