pub struct InstalledSkill {
pub name: String,
pub path: PathBuf,
pub source_str: String,
}Expand description
Result of installing a single skill.
Fields§
§name: StringSkill name (directory name under .agents/skills/).
path: PathBufAbsolute path to the installed skill directory.
source_str: StringSource string used.
Trait Implementations§
Source§impl Clone for InstalledSkill
impl Clone for InstalledSkill
Source§fn clone(&self) -> InstalledSkill
fn clone(&self) -> InstalledSkill
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 moreAuto Trait Implementations§
impl Freeze for InstalledSkill
impl RefUnwindSafe for InstalledSkill
impl Send for InstalledSkill
impl Sync for InstalledSkill
impl Unpin for InstalledSkill
impl UnsafeUnpin for InstalledSkill
impl UnwindSafe for InstalledSkill
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