pub type IntVecError = VarVecError;👎Deprecated since 0.6.0:
renamed to VarVecError; use VarVecError instead
Expand description
Deprecated alias for VarVecError. Use VarVecError instead.
Aliased Type§
pub enum IntVecError {
Io(Error),
Bitstream(Box<dyn Error + Send + Sync>),
InvalidParameters(String),
CodecDispatch(String),
IndexOutOfBounds(usize),
}Variants§
Io(Error)
An error occurred during an I/O operation, typically from the underlying bitstream reader or writer.
Bitstream(Box<dyn Error + Send + Sync>)
A generic error from the dsi-bitstream library, often related to decoding malformed data.
InvalidParameters(String)
An error indicating that one or more parameters are invalid for the requested operation.
CodecDispatch(String)
An error that occurs during the dynamic dispatch of codec functions.
IndexOutOfBounds(usize)
An error indicating that a provided index is outside the valid bounds of the vector.