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
macro_rules! convert_between {
($uint:ident, $hash:ident, $bytes_size:expr) => {
impl<'a> From<&'a numext_fixed_uint::$uint> for $hash {
#[inline]
fn from(u: &numext_fixed_uint::$uint) -> Self {
let mut ret = [0u8; $bytes_size];
u.into_big_endian(&mut ret).unwrap_or_else(|e| {
panic!(
"failed to convert from {} to {}: {}",
stringify!($uint),
stringify!($hash),
e
)
});
ret.into()
}
}
impl From<numext_fixed_uint::$uint> for $hash {
#[inline]
fn from(u: numext_fixed_uint::$uint) -> Self {
(&u).into()
}
}
impl<'a> From<&'a $hash> for numext_fixed_uint::$uint {
#[inline]
fn from(h: &$hash) -> Self {
numext_fixed_uint::$uint::from_big_endian(h.as_bytes()).unwrap_or_else(|e| {
panic!(
"failed to convert from {} to {}: {}",
stringify!($hash),
stringify!($uint),
e
)
})
}
}
impl From<$hash> for numext_fixed_uint::$uint {
#[inline]
fn from(h: $hash) -> Self {
(&h).into()
}
}
};
}