pub struct Skill {
pub frontmatter: SkillFrontmatter,
pub content: String,
pub source_path: PathBuf,
}Expand description
A fully parsed skill with its frontmatter and markdown body content.
Fields§
§frontmatter: SkillFrontmatterThe parsed frontmatter metadata.
content: StringThe markdown body content (everything after the closing ---).
source_path: PathBufThe source file path (for debugging and display).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Skill
impl RefUnwindSafe for Skill
impl Send for Skill
impl Sync for Skill
impl Unpin for Skill
impl UnsafeUnpin for Skill
impl UnwindSafe for Skill
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