| 48 | |
| 49 | #[derive(Debug, Copy, Clone, PartialEq, PartialOrd, Hash, Eq, Ord)] |
| 50 | struct MajorMinorPatch { |
| 51 | major: u16, |
| 52 | minor: u16, |
| 53 | patch: u16, |
| 54 | } |
| 55 | |
| 56 | #[derive(Debug, Clone, PartialEq, PartialOrd, Hash, Eq, Ord)] |
| 57 | struct CustomVersion(String); |