hrdf-parser 0.9.4

This library is dedicated to the parsing of the HRDF format. For the moment, it can only parse the Swiss version of the HRDF format.
Documentation
use thiserror::Error;

pub type PResult<T> = Result<T, ParsingError>;

#[derive(Debug, Error)]
pub enum ParsingError {
    #[error("Nom parsing error: {0}")]
    ParseError(#[from] nom::Err<nom::error::Error<String>>),
    #[error("Language error: {0}")]
    Language(#[from] strum::ParseError),
    #[error("Unkown id: {0}")]
    UnknownId(String),
    #[error("Unkown error: {0}")]
    Unknown(String),
    #[error("Invalid hex digit {0}")]
    InvalidHexDigit(char),
    #[error("Missing line type")]
    MissingLineType,
    #[error("Error default exchange time not defined")]
    MissingDefaultExchangeTime,
    #[error("Failed to parse {0}")]
    ParseInt(#[from] std::num::ParseIntError),
    #[error("Failed to parse date {0}")]
    ParseDate(#[from] chrono::ParseError),
    #[error("Unable to build NaiveTime from {0} hours, {1} minutes, {2} seconds")]
    UnableToBuildTime(u32, u32, u32),
    #[error("InfotextType {0} does not exist")]
    MinssingInfotextTypeCode(String),
}

impl From<nom::Err<nom::error::Error<&str>>> for ParsingError {
    fn from(value: nom::Err<nom::error::Error<&str>>) -> Self {
        ParsingError::ParseError(value.map_input(String::from))
    }
}

impl From<&str> for ParsingError {
    fn from(value: &str) -> Self {
        ParsingError::Unknown(value.to_string())
    }
}