1pub mod flag; 2pub mod string; 3 4#[derive(Debug, PartialEq, Eq)] 5struct ClapArgData { 6 name: &'static str, // 16 bytes 7 short: char, // 4 bytes 8 long: &'static str, // 16 bytes 9 description: &'static str, // 16 bytes 10} // 56 bytes (4 more due to padding)