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

Required Methods§

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

Implementors§