#[derive(Debug)]
#[non_exhaustive]
pub enum Error {
Io(std::io::Error),
InvalidBoxSize,
NonZeroPadding,
InvalidFloat,
InvalidEnum {
name: &'static str,
value: u32,
},
ValidationFailed(&'static str),
NonUtf8Name,
CannotSkip,
NotAligned,
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::Io(e) => Some(e),
_ => None,
}
}
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Io(e) => {
write!(f, "I/O error: {}", e)
},
Self::InvalidBoxSize => write!(f, "invalid box size"),
Self::NonZeroPadding => {
write!(f, "PadZeroToByte() read non-zero bits")
},
Self::InvalidFloat => {
write!(f, "F16() read NaN or Infinity")
},
Self::InvalidEnum { name, value } => {
write!(f, "Enum({}) read invalid enum value of {}", name, value)
},
Self::ValidationFailed(msg) => {
write!(f, "bitstream validation failed: {msg}")
},
Self::NonUtf8Name => {
write!(f, "read non-UTF-8 name")
},
Self::CannotSkip => {
write!(f, "target bookmark already passed")
},
Self::NotAligned => {
write!(f, "bitstream is unaligned")
},
}
}
}
impl From<std::io::Error> for Error {
fn from(e: std::io::Error) -> Self {
Self::Io(e)
}
}
pub type Result<T> = std::result::Result<T, Error>;