1
2
3
4
5
6
7
#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct APIVersion {
    pub major: i32,
    pub minor: i32,
    pub patch: i32
}