1//! Component range error
23use core::fmt;
45use crate::error;
67/// An error type indicating that a component provided to a method was out of range, causing a
8/// failure.
9// i64 is the narrowest type fitting all use cases. This eliminates the need for a type parameter.
10#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
11pub struct ComponentRange {
12/// Name of the component.
13pub(crate) name: &'static str,
14/// Minimum allowed value, inclusive.
15pub(crate) minimum: i64,
16/// Maximum allowed value, inclusive.
17pub(crate) maximum: i64,
18/// Value that was provided.
19pub(crate) value: i64,
20/// The minimum and/or maximum value is conditional on the value of other
21 /// parameters.
22pub(crate) conditional_range: bool,
23}
2425impl ComponentRange {
26/// Obtain the name of the component whose value was out of range.
27pub const fn name(self) -> &'static str {
28self.name
29 }
3031/// Whether the value's permitted range is conditional, i.e. whether an input with this
32 /// value could have succeeded if the values of other components were different.
33pub const fn is_conditional(self) -> bool {
34self.conditional_range
35 }
36}
3738impl fmt::Display for ComponentRange {
39fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
40write!(
41 f,
42"{} must be in the range {}..={}",
43self.name, self.minimum, self.maximum
44 )?;
4546if self.conditional_range {
47 f.write_str(", given values of other parameters")?;
48 }
4950Ok(())
51 }
52}
5354impl From<ComponentRange> for crate::Error {
55fn from(original: ComponentRange) -> Self {
56Self::ComponentRange(original)
57 }
58}
5960impl TryFrom<crate::Error> for ComponentRange {
61type Error = error::DifferentVariant;
6263fn try_from(err: crate::Error) -> Result<Self, Self::Error> {
64match err {
65crate::Error::ComponentRange(err) => Ok(err),
66_ => Err(error::DifferentVariant),
67 }
68 }
69}
7071/// **This trait implementation is deprecated and will be removed in a future breaking release.**
72#[cfg(feature = "serde")]
73impl serde::de::Expected for ComponentRange {
74fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
75write!(
76 f,
77"a value in the range {}..={}",
78self.minimum, self.maximum
79 )
80 }
81}
8283#[cfg(feature = "serde")]
84impl ComponentRange {
85/// Convert the error to a deserialization error.
86pub(crate) fn into_de_error<E: serde::de::Error>(self) -> E {
87 E::invalid_value(serde::de::Unexpected::Signed(self.value), &self)
88 }
89}
9091#[cfg(feature = "std")]
92#[allow(clippy::std_instead_of_core)]
93impl std::error::Error for ComponentRange {}