devela/num/geom/metric/angle/impl/
core_traits.rs

1// devela::num::geom::metric::angle::impl::core_traits
2//
3//!
4//
5
6use crate::{Angle, ConstDefault, Debug, FmtResult, Formatter, Ordering};
7
8/* Clone, Copy */
9
10// T:Clone
11impl<T: Clone> Clone for Angle<T> {
12    fn clone(&self) -> Self {
13        Self::new(self.turn.clone())
14    }
15}
16
17// T:Copy
18impl<T: Copy> Copy for Angle<T> {}
19
20/* Default, ConstDefault */
21
22impl<T: Default> Default for Angle<T> {
23    /// Returns a `Angle`, allocated in the stack,
24    /// using the default value to fill the data.
25    fn default() -> Self {
26        Self::new(T::default())
27    }
28}
29
30// S:Bare + T:ConstDefault
31impl<T: ConstDefault> ConstDefault for Angle<T> {
32    /// Returns a Angle, allocated in the stack,
33    /// using the default value to fill the data.
34    const DEFAULT: Self = { Self::new(T::DEFAULT) };
35}
36
37// T:Debug
38impl<T: Debug> Debug for Angle<T> {
39    fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult<()> {
40        write!(f, "Angle({:?})", self.turn)
41    }
42}
43
44// T:PartialEq
45impl<T: PartialEq> PartialEq for Angle<T> {
46    fn eq(&self, other: &Self) -> bool {
47        self.turn == other.turn
48    }
49}
50// T:Eq
51impl<T: Eq> Eq for Angle<T> {}
52
53// T:PartialOrd
54impl<T: PartialOrd> PartialOrd for Angle<T> {
55    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
56        self.turn.partial_cmp(&other.turn)
57    }
58}
59
60// T:Ord
61impl<T: Ord> Ord for Angle<T> {
62    fn cmp(&self, other: &Self) -> Ordering {
63        self.turn.cmp(&other.turn)
64    }
65}