mod borrowed;
pub mod compr_info;
#[cfg(any(feature = "alloc", test))]
mod owned;
mod props;
pub use borrowed::PayloadRef;
pub use compr_info::ComprInfo;
#[cfg(any(feature = "alloc", test))]
pub use owned::Payload;
#[cfg(any(feature = "alloc", test))]
pub use props::PayloadProps;
pub use props::PayloadPropsRef;
#[cfg(test)]
mod tests;