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