zune_core/
options.rs

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//!
9pub use decoder::DecoderOptions;
10pub use encoder::EncoderOptions;
11
12mod decoder;
13mod encoder;