1pub struct Settings { 2 pub installed_only: bool, 3} 4 5impl Settings { 6 pub fn defaults() -> Self { 7 Self { 8 installed_only: false, 9 } 10 } 11}