1//! Error parsing an input into a [`Parsed`](crate::parsing::Parsed) struct
23use core::fmt;
45use crate::error;
67/// An error that occurred while parsing the input into a [`Parsed`](crate::parsing::Parsed) struct.
8#[non_exhaustive]
9#[derive(Debug, Clone, Copy, PartialEq, Eq)]
10pub enum ParseFromDescription {
11/// A string literal was not what was expected.
12#[non_exhaustive]
13InvalidLiteral,
14/// A dynamic component was not valid.
15InvalidComponent(&'static str),
16/// The input was expected to have ended, but there are characters that remain.
17#[non_exhaustive]
18UnexpectedTrailingCharacters,
19}
2021impl fmt::Display for ParseFromDescription {
22fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
23match self {
24Self::InvalidLiteral => f.write_str("a character literal was not valid"),
25Self::InvalidComponent(name) => {
26write!(f, "the '{name}' component could not be parsed")
27 }
28Self::UnexpectedTrailingCharacters => {
29 f.write_str("unexpected trailing characters; the end of input was expected")
30 }
31 }
32 }
33}
3435#[cfg(feature = "std")]
36#[allow(clippy::std_instead_of_core)]
37impl std::error::Error for ParseFromDescription {}
3839impl From<ParseFromDescription> for crate::Error {
40fn from(original: ParseFromDescription) -> Self {
41Self::ParseFromDescription(original)
42 }
43}
4445impl TryFrom<crate::Error> for ParseFromDescription {
46type Error = error::DifferentVariant;
4748fn try_from(err: crate::Error) -> Result<Self, Self::Error> {
49match err {
50crate::Error::ParseFromDescription(err) => Ok(err),
51_ => Err(error::DifferentVariant),
52 }
53 }
54}