pub struct InstalledSkillSummary {
pub name: String,
pub source_type: String,
pub path: String,
}Expand description
Summary of a single installed skill, included in install_skills responses.
Fields§
§name: StringSkill name (directory name under .agents/skills/).
source_type: StringSource type string used when the skill was installed (e.g. “self”, “local”).
path: StringAbsolute path to the installed skill directory.
Trait Implementations§
Source§impl Debug for InstalledSkillSummary
impl Debug for InstalledSkillSummary
Source§impl<'de> Deserialize<'de> for InstalledSkillSummary
impl<'de> Deserialize<'de> for InstalledSkillSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InstalledSkillSummary
impl RefUnwindSafe for InstalledSkillSummary
impl Send for InstalledSkillSummary
impl Sync for InstalledSkillSummary
impl Unpin for InstalledSkillSummary
impl UnsafeUnpin for InstalledSkillSummary
impl UnwindSafe for InstalledSkillSummary
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