#[derive(Debug, Clone, Default)]
pub struct LspSettings {
pub trace: bool,
}
pub fn apply_config_from_value(settings: &mut LspSettings, value: &serde_json::Value) {
if let Some(b) = value.get("trace").and_then(serde_json::Value::as_bool) {
settings.trace = b;
}
}