//! Parameters for the `prompts/get` JSON-RPC method.
useserde::{Deserialize, Serialize};/// Parameters for a `prompts/get` request.
#[derive(Debug, Clone, Serialize, Deserialize)]pubstructGetPromptParams{/// Name of the prompt to retrieve.
pubname: String,
/// Arguments to pass to the prompt function.
#[serde(skip_serializing_if ="Option::is_none")]pubarguments:Option<serde_json::Value>,
}