pub struct SkillMeta {
pub name: String,
pub description: String,
pub path: PathBuf,
}Expand description
Metadata extracted from SKILL.md frontmatter.
Fields§
§name: StringUnique skill name (from frontmatter name:).
description: StringWhen/why to activate this skill (from frontmatter description:).
path: PathBufPath to the skill directory.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SkillMeta
impl RefUnwindSafe for SkillMeta
impl Send for SkillMeta
impl Sync for SkillMeta
impl Unpin for SkillMeta
impl UnsafeUnpin for SkillMeta
impl UnwindSafe for SkillMeta
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