pub struct InstallSkillsData {
pub skills: Vec<InstalledSkillSummary>,
pub global: bool,
pub lock_file_path: String,
}Expand description
Response for install-skills command.
Fields§
§skills: Vec<InstalledSkillSummary>List of installed skills.
global: boolWhether skills were installed globally (~/.agents/) or locally (./.agents/).
lock_file_path: StringAbsolute path to the .skill-lock.json file that was updated.
Trait Implementations§
Source§impl Debug for InstallSkillsData
impl Debug for InstallSkillsData
Source§impl<'de> Deserialize<'de> for InstallSkillsData
impl<'de> Deserialize<'de> for InstallSkillsData
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 InstallSkillsData
impl RefUnwindSafe for InstallSkillsData
impl Send for InstallSkillsData
impl Sync for InstallSkillsData
impl Unpin for InstallSkillsData
impl UnsafeUnpin for InstallSkillsData
impl UnwindSafe for InstallSkillsData
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