1use crate::classfile::types::U2; 2 3#[derive(Debug)] 4pub struct Version { 5 pub minor: U2, 6 pub major: U2, 7}