pub struct CoreSkillsConfig {
pub enabled: Option<bool>,
pub dirs: Option<Vec<String>>,
}Expand description
[core.skills] (obligation 4, D-7). P3/P4: a NEW subsystem extending
Config.prompts; not yet consumed.
Fields§
§enabled: Option<bool>Whether the skills subsystem is on.
dirs: Option<Vec<String>>Extra roots merged over user+project skill defaults.
Trait Implementations§
Source§impl Clone for CoreSkillsConfig
impl Clone for CoreSkillsConfig
Source§fn clone(&self) -> CoreSkillsConfig
fn clone(&self) -> CoreSkillsConfig
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 CoreSkillsConfig
impl Debug for CoreSkillsConfig
Source§impl Default for CoreSkillsConfig
impl Default for CoreSkillsConfig
Source§fn default() -> CoreSkillsConfig
fn default() -> CoreSkillsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CoreSkillsConfig
impl<'de> Deserialize<'de> for CoreSkillsConfig
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
Source§impl PartialEq for CoreSkillsConfig
impl PartialEq for CoreSkillsConfig
Source§impl Serialize for CoreSkillsConfig
impl Serialize for CoreSkillsConfig
impl StructuralPartialEq for CoreSkillsConfig
Auto Trait Implementations§
impl Freeze for CoreSkillsConfig
impl RefUnwindSafe for CoreSkillsConfig
impl Send for CoreSkillsConfig
impl Sync for CoreSkillsConfig
impl Unpin for CoreSkillsConfig
impl UnsafeUnpin for CoreSkillsConfig
impl UnwindSafe for CoreSkillsConfig
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