1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#[derive(Debug)]
pub enum RErr {
  /// Invalid start-code for identification
  /// of a valid Reekpie file.
  StartCode,
  /// Sample-format was reserved for future usage
  /// but still used in the format.
  Format,
  /// Error occured while doing I/O with given writer
  /// or passing it to compressor/decompressor.
  IO,
  /// Input samplerate was not valid for RKPI2.
  Rate,
  /// Number of input channels was not valid.
  Channels
}