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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
use crate::{
fill::Slot,
std::{any::Any, error},
ValueBag,
};
use super::Internal;
impl<'v> ValueBag<'v> {
pub fn capture_error<T>(value: &'v T) -> Self
where
T: error::Error + 'static,
{
ValueBag {
inner: Internal::Error(value),
}
}
#[inline]
pub fn from_dyn_error(value: &'v (dyn error::Error + 'static)) -> Self {
ValueBag {
inner: Internal::AnonError(value),
}
}
#[inline]
pub fn to_borrowed_error(&self) -> Option<&(dyn Error + 'static)> {
match self.inner {
Internal::Error(value) => Some(value.as_super()),
Internal::AnonError(value) => Some(value),
_ => None,
}
}
}
#[cfg(feature = "error")]
pub(crate) trait DowncastError {
fn as_any(&self) -> &dyn Any;
fn as_super(&self) -> &(dyn error::Error + 'static);
}
#[cfg(feature = "error")]
impl<T: error::Error + 'static> DowncastError for T {
fn as_any(&self) -> &dyn Any {
self
}
fn as_super(&self) -> &(dyn error::Error + 'static) {
self
}
}
impl<'s, 'f> Slot<'s, 'f> {
pub fn fill_error<T>(self, value: T) -> Result<(), crate::Error>
where
T: error::Error + 'static,
{
self.fill(|visitor| visitor.error(&value))
}
pub fn fill_dyn_error(self, value: &(dyn error::Error + 'static)) -> Result<(), crate::Error> {
self.fill(|visitor| visitor.error(value))
}
}
pub use self::error::Error;
#[cfg(test)]
mod tests {
#[cfg(target_arch = "wasm32")]
use wasm_bindgen_test::*;
use super::*;
use crate::{
std::{io, string::ToString},
test::*,
};
#[test]
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
fn error_capture() {
let err = io::Error::from(io::ErrorKind::Other);
assert_eq!(
err.to_string(),
ValueBag::capture_error(&err)
.to_borrowed_error()
.expect("invalid value")
.to_string()
);
assert_eq!(
err.to_string(),
ValueBag::from_dyn_error(&err)
.to_borrowed_error()
.expect("invalid value")
.to_string()
);
}
#[test]
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
fn error_downcast() {
let err = io::Error::from(io::ErrorKind::Other);
assert!(ValueBag::capture_error(&err)
.downcast_ref::<io::Error>()
.is_some());
}
#[test]
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
fn error_visit() {
let err = io::Error::from(io::ErrorKind::Other);
ValueBag::from_dyn_error(&err)
.visit(TestVisit)
.expect("failed to visit value");
}
}