pub struct EmbeddedSkillData {
pub skill_md: &'static str,
pub references: &'static [(&'static str, &'static str)],
pub assets: &'static [(&'static str, &'static str, Option<&'static str>)],
}Expand description
Static data for an embedded skill, designed for include_str!.
Fields§
§skill_md: &'static strRaw SKILL.md content (YAML frontmatter + markdown body).
references: &'static [(&'static str, &'static str)]Reference files as (relative_path, content) pairs.
assets: &'static [(&'static str, &'static str, Option<&'static str>)]Asset files as (relative_path, content_base64, media_type) tuples.
Auto Trait Implementations§
impl Freeze for EmbeddedSkillData
impl RefUnwindSafe for EmbeddedSkillData
impl Send for EmbeddedSkillData
impl Sync for EmbeddedSkillData
impl Unpin for EmbeddedSkillData
impl UnwindSafe for EmbeddedSkillData
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