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
use crate::{Cast, CheckedCast, Round, UnwrappedCast};
use core::fmt::{Display, Formatter, LowerExp, Result as FmtResult, UpperExp};
macro_rules! convert {
($($Src:ty),* => $Dst:ty) => { $(
impl Cast<$Dst> for $Src {
#[inline]
fn cast(self) -> $Dst {
self as $Dst
}
}
impl CheckedCast<$Dst> for $Src {
#[inline]
fn checked_cast(self) -> Option<$Dst> {
Some(self.cast())
}
}
impl UnwrappedCast<$Dst> for $Src {
#[inline]
fn unwrapped_cast(self) -> $Dst {
self.cast()
}
}
)* };
}
convert! { i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128, usize, f32, f64 => f32 }
convert! { i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128, usize, f32, f64 => f64 }
impl<T: Display> Display for Round<T> {
fn fmt(&self, f: &mut Formatter) -> FmtResult {
Display::fmt(&self.0, f)
}
}
impl<T: LowerExp> LowerExp for Round<T> {
fn fmt(&self, f: &mut Formatter) -> FmtResult {
LowerExp::fmt(&self.0, f)
}
}
impl<T: UpperExp> UpperExp for Round<T> {
fn fmt(&self, f: &mut Formatter) -> FmtResult {
UpperExp::fmt(&self.0, f)
}
}