pub struct LocalConfig {
pub help_hint_shown: bool,
}Expand description
Per-user local preferences stored in .kando/local.toml (gitignored).
Defaults to all-off so missing fields are handled gracefully.
Fields§
§help_hint_shown: boolWhether the first-launch help hint has been shown.
Trait Implementations§
Source§impl Debug for LocalConfig
impl Debug for LocalConfig
Source§impl Default for LocalConfig
impl Default for LocalConfig
Source§fn default() -> LocalConfig
fn default() -> LocalConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocalConfig
impl<'de> Deserialize<'de> for LocalConfig
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 LocalConfig
impl RefUnwindSafe for LocalConfig
impl Send for LocalConfig
impl Sync for LocalConfig
impl Unpin for LocalConfig
impl UnsafeUnpin for LocalConfig
impl UnwindSafe for LocalConfig
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