1#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord)] 2pub struct Release { 3 pub minor: u16, 4 pub patch: Option<u16>, 5}