1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
use crate::gp::GpDefinitionsBuilderError;
use core::fmt;
#[cfg(feature = "with-ndsparse")]
use ndsparse::csl::CslError;
use num_traits::{NumCast, ToPrimitive};
#[derive(Debug)]
pub enum Error {
BadCast,
#[cfg(feature = "with-ndsparse")]
CslError(CslError),
EmptyElement,
GDBE(GpDefinitionsBuilderError),
Other(&'static str),
}
impl Error {
pub fn cast_rslt<T, U>(value: T) -> Result<U, Error>
where
T: ToPrimitive,
U: NumCast,
{
if let Some(r) = NumCast::from(value) {
Ok(r)
} else {
Err(Self::BadCast)
}
}
pub fn opt_rslt<T>(opt: Option<T>) -> Result<T, Error> {
if let Some(r) = opt {
Ok(r)
} else {
Err(Self::EmptyElement)
}
}
}
impl From<core::convert::Infallible> for Error {
fn from(_: core::convert::Infallible) -> Self {
Self::BadCast
}
}
impl From<GpDefinitionsBuilderError> for Error {
fn from(from: GpDefinitionsBuilderError) -> Self {
Self::GDBE(from)
}
}
#[cfg(feature = "with-ndsparse")]
impl From<CslError> for Error {
fn from(from: CslError) -> Self {
Self::CslError(from)
}
}
#[cfg(feature = "std")]
impl std::error::Error for Error {}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::BadCast => write!(f, "BadCast"),
#[cfg(feature = "with-ndsparse")]
Self::CslError(x) => write!(f, "CslError({})", x),
Self::EmptyElement => write!(f, "EmptyElement"),
Self::GDBE(x) => write!(f, "GDBE({})", x),
Self::Other(x) => write!(f, "Other({})", x),
}
}
}