blob: 64220b633e2581c655f60dcc2d646633cb035ab2 (
plain)
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
79
|
use std::convert::Infallible;
use std::error::Error as StdError;
use std::fmt;
type BoxError = Box<dyn std::error::Error + Send + Sync>;
/// Errors that can happen inside warp.
pub struct Error {
inner: BoxError,
}
impl Error {
pub(crate) fn new<E: Into<BoxError>>(err: E) -> Error {
Error { inner: err.into() }
}
}
impl fmt::Debug for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
// Skip showing worthless `Error { .. }` wrapper.
fmt::Debug::fmt(&self.inner, f)
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Display::fmt(&self.inner, f)
}
}
impl StdError for Error {
fn source(&self) -> Option<&(dyn StdError + 'static)> {
Some(self.inner.as_ref())
}
}
impl From<Infallible> for Error {
fn from(infallible: Infallible) -> Error {
match infallible {}
}
}
#[test]
fn error_size_of() {
assert_eq!(
::std::mem::size_of::<Error>(),
::std::mem::size_of::<usize>() * 2
);
}
#[test]
fn error_source() {
let e = Error::new(std::fmt::Error {});
assert!(e.source().unwrap().is::<std::fmt::Error>());
}
macro_rules! unit_error {
(
$(#[$docs:meta])*
$pub:vis $typ:ident: $display:literal
) => (
$(#[$docs])*
$pub struct $typ { _p: (), }
impl ::std::fmt::Debug for $typ {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
f.debug_struct(stringify!($typ)).finish()
}
}
impl ::std::fmt::Display for $typ {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
f.write_str($display)
}
}
impl ::std::error::Error for $typ {}
)
}
|