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
use core::fmt::{Display, Formatter, Result};
#[cfg(feature = "std")]
use derive_more::Error;
#[cfg_attr(feature = "std", derive(Error))]
#[derive(Clone, Debug, PartialEq, Eq)]
#[non_exhaustive]
pub enum ArithmeticError {
Overflow,
DivisionByZero,
DomainViolation,
}
impl ArithmeticError {
pub const fn as_str(&self) -> &'static str {
match self {
Self::Overflow => "overflow",
Self::DivisionByZero => "division by zero",
Self::DomainViolation => "domain violation",
}
}
}
impl Display for ArithmeticError {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
f.write_str(self.as_str())
}
}
#[cfg_attr(feature = "std", derive(Error))]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ConvertError {
reason: &'static str,
}
impl ConvertError {
pub(crate) fn new(reason: &'static str) -> Self {
Self { reason }
}
pub const fn as_str(&self) -> &'static str {
self.reason
}
}
impl Display for ConvertError {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
f.write_str(self.as_str())
}
}