pub struct SkillInstructions {
pub instructions: String,
pub files: Vec<(String, String)>,
}Expand description
Full skill content loaded on activation.
Fields§
§instructions: StringFull SKILL.md body.
files: Vec<(String, String)>Bundled files as path/content pairs.
Trait Implementations§
Source§impl Clone for SkillInstructions
impl Clone for SkillInstructions
Source§fn clone(&self) -> SkillInstructions
fn clone(&self) -> SkillInstructions
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 moreAuto Trait Implementations§
impl Freeze for SkillInstructions
impl RefUnwindSafe for SkillInstructions
impl Send for SkillInstructions
impl Sync for SkillInstructions
impl Unpin for SkillInstructions
impl UnsafeUnpin for SkillInstructions
impl UnwindSafe for SkillInstructions
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