pub struct UserSettingsSetResult {
pub shadowed_keys: Vec<String>,
}Expand description
Outcome of writing user settings.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§shadowed_keys: Vec<String>Top-level keys whose write landed in settings.json but is shadowed by a value still present in the legacy config.json (config.json wins on read). The write does not take effect until the legacy value is removed.
Trait Implementations§
Source§impl Clone for UserSettingsSetResult
impl Clone for UserSettingsSetResult
Source§fn clone(&self) -> UserSettingsSetResult
fn clone(&self) -> UserSettingsSetResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UserSettingsSetResult
impl Debug for UserSettingsSetResult
Source§impl Default for UserSettingsSetResult
impl Default for UserSettingsSetResult
Source§fn default() -> UserSettingsSetResult
fn default() -> UserSettingsSetResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserSettingsSetResult
impl<'de> Deserialize<'de> for UserSettingsSetResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UserSettingsSetResult
impl RefUnwindSafe for UserSettingsSetResult
impl Send for UserSettingsSetResult
impl Sync for UserSettingsSetResult
impl Unpin for UserSettingsSetResult
impl UnsafeUnpin for UserSettingsSetResult
impl UnwindSafe for UserSettingsSetResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more