Trait SettingsLoader
nvim_gtk::settings
pub trait SettingsLoader: Sized + Serialize + Default { const SETTINGS_FILE: &'static str; fn from_str(s: &str) -> Result<Self, String>; fn load() -> Self { ... } fn is_file_exists() -> bool { ... } fn save(&self) { ... } }
const SETTINGS_FILE: &'static str
fn from_str(s: &str) -> Result<Self, String>
fn load() -> Self
fn is_file_exists() -> bool
fn save(&self)
impl SettingsLoader for Settings
impl SettingsLoader for ProjectSettings
impl SettingsLoader for WindowState