pub struct SkillInput {
pub skill: String,
pub args: Option<String>,
}Expand description
Input for the Skill tool - executes a skill.
Fields§
§skill: StringThe skill name (e.g., “commit”, “review-pr”)
args: Option<String>Optional arguments for the skill
Trait Implementations§
Source§impl Clone for SkillInput
impl Clone for SkillInput
Source§fn clone(&self) -> SkillInput
fn clone(&self) -> SkillInput
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 moreSource§impl Debug for SkillInput
impl Debug for SkillInput
Source§impl<'de> Deserialize<'de> for SkillInput
impl<'de> Deserialize<'de> for SkillInput
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
Source§impl PartialEq for SkillInput
impl PartialEq for SkillInput
Source§impl Serialize for SkillInput
impl Serialize for SkillInput
impl StructuralPartialEq for SkillInput
Auto Trait Implementations§
impl Freeze for SkillInput
impl RefUnwindSafe for SkillInput
impl Send for SkillInput
impl Sync for SkillInput
impl Unpin for SkillInput
impl UnsafeUnpin for SkillInput
impl UnwindSafe for SkillInput
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