1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
pub struct AppConfig { pub title: String, pub version: u32, pub width: u32, pub height: u32, } impl Default for AppConfig { fn default() -> Self { Self { title: "Rust Vulkan".to_string(), version: 1, width: 800, height: 600, } } }