//! hyperium `http` → rama-http-types conversions.
modbody;modleaf;modmessage;pubusebody::{RamaBody, RamaBodyError};/// Fallibly convert a hyperium [`http`]-crate value into its rama-http-types
/// equivalent. Sealed; the implemented set is fixed by this crate.
////// [`http`]: https://docs.rs/http
pubtraitTryIntoRamaHttp: crate::sealed::Sealed {/// The rama-http-types type produced.
typeOutput;/// The conversion error.
typeError;/// Convert `self` into its rama-http-types equivalent.
fntry_into_rama_http(self)->Result<Self::Output, Self::Error>;}