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