1 2 3 4 5 6 7 8 9 10 11 12 13
pub struct RunSettings { pub continuous: bool, pub title: &'static str, } impl Default for RunSettings { fn default() -> Self { Self { continuous: true, title: "Title", } } }