pub enum EncodingError {
QuantizationFailed,
HuffmanError(String),
BitstreamError(String),
MdctError(String),
SubbandError(String),
InvalidInputLength {
expected: usize,
actual: usize,
},
InvalidDataLength {
expected: usize,
actual: usize,
},
InvalidChannelIndex {
channel: usize,
max_channels: usize,
},
BitReservoirOverflow {
requested: usize,
available: usize,
},
ValidationError(String),
}Expand description
Encoding process errors
Variants§
QuantizationFailed
Quantization loop failed to converge
HuffmanError(String)
Huffman encoding error
BitstreamError(String)
Bitstream writing error
MdctError(String)
MDCT transform error
SubbandError(String)
Subband filter error
InvalidInputLength
Invalid input length for processing
InvalidDataLength
Invalid data length for processing
InvalidChannelIndex
Invalid channel index
BitReservoirOverflow
Bit reservoir overflow
ValidationError(String)
Validation error for testing and verification
Trait Implementations§
Source§impl Debug for EncodingError
impl Debug for EncodingError
Source§impl Display for EncodingError
impl Display for EncodingError
Source§impl Error for EncodingError
impl Error for EncodingError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<EncoderError> for EncodingError
Convert EncoderError to EncodingError for verification purposes
impl From<EncoderError> for EncodingError
Convert EncoderError to EncodingError for verification purposes
Source§fn from(err: EncoderError) -> Self
fn from(err: EncoderError) -> Self
Converts to this type from the input type.
Source§impl From<EncodingError> for EncoderError
impl From<EncodingError> for EncoderError
Source§fn from(source: EncodingError) -> Self
fn from(source: EncodingError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EncodingError
impl RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl UnwindSafe for EncodingError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more