pub struct SaveSkillParams {
pub server_id: String,
pub content: String,
pub output_path: Option<PathBuf>,
pub overwrite: bool,
}Expand description
Parameters for saving a skill.
§Examples
use mcp_execution_skill::types::SaveSkillParams;
let params = SaveSkillParams {
server_id: "github".to_string(),
content: "---\nname: github\n---\n# GitHub".to_string(),
output_path: None,
overwrite: false,
};Fields§
§server_id: StringServer identifier.
content: StringSKILL.md content (markdown with YAML frontmatter).
output_path: Option<PathBuf>Custom output path.
Default: ~/.claude/skills/{server_id}/SKILL.md
overwrite: boolOverwrite if exists.
Trait Implementations§
Source§impl Clone for SaveSkillParams
impl Clone for SaveSkillParams
Source§fn clone(&self) -> SaveSkillParams
fn clone(&self) -> SaveSkillParams
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 SaveSkillParams
impl Debug for SaveSkillParams
Source§impl<'de> Deserialize<'de> for SaveSkillParams
impl<'de> Deserialize<'de> for SaveSkillParams
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 JsonSchema for SaveSkillParams
impl JsonSchema for SaveSkillParams
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for SaveSkillParams
impl RefUnwindSafe for SaveSkillParams
impl Send for SaveSkillParams
impl Sync for SaveSkillParams
impl Unpin for SaveSkillParams
impl UnwindSafe for SaveSkillParams
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