law_encoder/
formats.rs

1pub enum InputFormat {
2    LittleEndian,
3    BigEndian,
4}
5
6pub enum OutputFormat {
7    Mulaw,
8    Alaw,
9}