1//! Invalid format description
23use alloc::string::String;
4use core::fmt;
56use crate::error;
78/// The format description provided was not valid.
9#[non_exhaustive]
10#[derive(Debug, Clone, PartialEq, Eq)]
11pub enum InvalidFormatDescription {
12/// There was a bracket pair that was opened but not closed.
13#[non_exhaustive]
14UnclosedOpeningBracket {
15/// The zero-based index of the opening bracket.
16index: usize,
17 },
18/// A component name is not valid.
19#[non_exhaustive]
20InvalidComponentName {
21/// The name of the invalid component name.
22name: String,
23/// The zero-based index the component name starts at.
24index: usize,
25 },
26/// A modifier is not valid.
27#[non_exhaustive]
28InvalidModifier {
29/// The value of the invalid modifier.
30value: String,
31/// The zero-based index the modifier starts at.
32index: usize,
33 },
34/// A component name is missing.
35#[non_exhaustive]
36MissingComponentName {
37/// The zero-based index where the component name should start.
38index: usize,
39 },
40/// A required modifier is missing.
41#[non_exhaustive]
42MissingRequiredModifier {
43/// The name of the modifier that is missing.
44name: &'static str,
45/// The zero-based index of the component.
46index: usize,
47 },
48/// Something was expected, but not found.
49#[non_exhaustive]
50Expected {
51/// What was expected to be present, but wasn't.
52what: &'static str,
53/// The zero-based index the item was expected to be found at.
54index: usize,
55 },
56/// Certain behavior is not supported in the given context.
57#[non_exhaustive]
58NotSupported {
59/// The behavior that is not supported.
60what: &'static str,
61/// The context in which the behavior is not supported.
62context: &'static str,
63/// The zero-based index the error occurred at.
64index: usize,
65 },
66}
6768impl From<InvalidFormatDescription> for crate::Error {
69fn from(original: InvalidFormatDescription) -> Self {
70Self::InvalidFormatDescription(original)
71 }
72}
7374impl TryFrom<crate::Error> for InvalidFormatDescription {
75type Error = error::DifferentVariant;
7677fn try_from(err: crate::Error) -> Result<Self, Self::Error> {
78match err {
79crate::Error::InvalidFormatDescription(err) => Ok(err),
80_ => Err(error::DifferentVariant),
81 }
82 }
83}
8485impl fmt::Display for InvalidFormatDescription {
86fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
87use InvalidFormatDescription::*;
88match self {
89 UnclosedOpeningBracket { index } => {
90write!(f, "unclosed opening bracket at byte index {index}")
91 }
92 InvalidComponentName { name, index } => {
93write!(f, "invalid component name `{name}` at byte index {index}")
94 }
95 InvalidModifier { value, index } => {
96write!(f, "invalid modifier `{value}` at byte index {index}")
97 }
98 MissingComponentName { index } => {
99write!(f, "missing component name at byte index {index}")
100 }
101 MissingRequiredModifier { name, index } => {
102write!(
103 f,
104"missing required modifier `{name}` for component at byte index {index}"
105)
106 }
107 Expected {
108 what: expected,
109 index,
110 } => {
111write!(f, "expected {expected} at byte index {index}")
112 }
113 NotSupported {
114 what,
115 context,
116 index,
117 } => {
118if context.is_empty() {
119write!(f, "{what} is not supported at byte index {index}")
120 } else {
121write!(
122 f,
123"{what} is not supported in {context} at byte index {index}"
124)
125 }
126 }
127 }
128 }
129}
130131#[cfg(feature = "std")]
132#[allow(clippy::std_instead_of_core)]
133impl std::error::Error for InvalidFormatDescription {}