| 1 | //! Decoder and Encoder Options |
|---|---|
| 2 | //! |
| 3 | //! This module exposes a struct for which all implemented |
| 4 | //! decoders get shared options for decoding |
| 5 | //! |
| 6 | //! All supported options are put into one _Options to allow for global configurations |
| 7 | //! options e.g the same `DecoderOption` can be reused for all other decoders |
| 8 | //! |
| 9 | pub use decoder::DecoderOptions; |
| 10 | pub use encoder::EncoderOptions; |
| 11 | |
| 12 | mod decoder; |
| 13 | mod encoder; |
| 14 |
