@@ -17,31 +17,46 @@ use serde_json::Value;
1717pub struct InspectResultDataDTO {
1818 /// The value from the default configuration.
1919 pub DefaultValue : Option < Value > ,
20+
2021 /// The value from the user (global) settings.
2122 pub UserValue : Option < Value > ,
23+
2224 /// The value from the local (un-synced) user settings.
2325 pub UserLocalValue : Option < Value > ,
26+
2427 /// The value from the remote user settings (if applicable).
2528 pub UserRemoteValue : Option < Value > ,
29+
2630 /// The value from the workspace settings.
2731 pub WorkSpaceValue : Option < Value > ,
32+
2833 /// The value from a specific workspace folder's settings.
2934 pub WorkSpaceFolderValue : Option < Value > ,
35+
3036 /// The value from the in-memory configuration.
3137 pub MemoryValue : Option < Value > ,
38+
3239 /// The value from the policy-enforced configuration.
3340 pub PolicyValue : Option < Value > ,
41+
3442 /// The final, effective value after all scopes have been merged.
3543 pub EffectiveValue : Option < Value > ,
3644
3745 // --- Language-Specific Overrides ---
3846 pub DefaultLanguageValue : Option < Value > ,
47+
3948 pub UserLanguageValue : Option < Value > ,
49+
4050 pub UserLocalLanguageValue : Option < Value > ,
51+
4152 pub UserRemoteLanguageValue : Option < Value > ,
53+
4254 pub WorkSpaceLanguageValue : Option < Value > ,
55+
4356 pub WorkSpaceFolderLanguageValue : Option < Value > ,
57+
4458 pub MemoryLanguageValue : Option < Value > ,
59+
4560 pub PolicyLanguageValue : Option < Value > ,
4661
4762 /// A list of language identifiers for which language-specific values were
0 commit comments