1 2 3 4 5 6 7 8 9 10 11
//! # Rayon Utilities //! //! [`rayon`] powered wrappers for parallel encoders and decoders. mod rayon_decoder; mod rayon_encoder; #[doc(inline)] pub use rayon_decoder::ParallelRayonDecoder; #[doc(inline)] pub use rayon_encoder::ParallelRayonEncoder;