pub struct SkillMetadata {
pub description: Option<String>,
pub when_to_use: Option<String>,
pub user_invocable: bool,
pub disable_non_interactive: bool,
pub paths: Option<Vec<String>>,
}Expand description
Frontmatter metadata for a skill.
Fields§
§description: Option<String>What this skill does.
when_to_use: Option<String>When to invoke this skill.
user_invocable: boolWhether users can invoke this via /name.
disable_non_interactive: boolWhether to disable in non-interactive sessions.
paths: Option<Vec<String>>File patterns that trigger this skill suggestion.
Trait Implementations§
Source§impl Clone for SkillMetadata
impl Clone for SkillMetadata
Source§fn clone(&self) -> SkillMetadata
fn clone(&self) -> SkillMetadata
Returns a duplicate of the value. Read more
1.0.0 · 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 SkillMetadata
impl Debug for SkillMetadata
Source§impl Default for SkillMetadata
impl Default for SkillMetadata
Source§fn default() -> SkillMetadata
fn default() -> SkillMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SkillMetadatawhere
SkillMetadata: Default,
impl<'de> Deserialize<'de> for SkillMetadatawhere
SkillMetadata: Default,
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 SkillMetadata
impl RefUnwindSafe for SkillMetadata
impl Send for SkillMetadata
impl Sync for SkillMetadata
impl Unpin for SkillMetadata
impl UnsafeUnpin for SkillMetadata
impl UnwindSafe for SkillMetadata
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