rustversion_msrv/
version.rs1#![allow(dead_code)]
2
3#[derive(Debug, Clone, Copy, PartialEq)]
4pub struct Version {
5 pub minor: u16,
6 pub patch: u16,
7 pub channel: Channel,
8}
9
10#[derive(Debug, Clone, Copy, PartialEq)]
11pub enum Channel {
12 Stable,
13 Beta,
14 Nightly,
15 Dev,
16}