pub trait UpdateRwSetting {
    // Required method
    fn update_rw_setting(
        &mut self,
        name: &String,
        value: &SettingsValue,
        write: bool
    ) -> bool;
}

Required Methods§

source

fn update_rw_setting( &mut self, name: &String, value: &SettingsValue, write: bool ) -> bool

| Write a setting to | /settings.json. Optionally just | update the setting in memory and do not | write the file.

Implementors§