pub struct GetPromptResultResponse {
pub id: RequestId,
pub result: GetPromptResultResponseResult,
/* private fields */
}Expand description
Latest MCP Protocol 2026_07_28 A successful response from the server for a {@link GetPromptRequestprompts/get} request.
JSON schema
{
"description": "A successful response from the server for a {@link GetPromptRequestprompts/get} request.",
"type": "object",
"required": [
"id",
"jsonrpc",
"result"
],
"properties": {
"id": {
"$ref": "#/$defs/RequestId"
},
"jsonrpc": {
"type": "string",
"const": "2.0"
},
"result": {
"anyOf": [
{
"$ref": "#/$defs/InputRequiredResult"
},
{
"$ref": "#/$defs/GetPromptResult"
}
]
}
}
}Fields§
§id: RequestId§result: GetPromptResultResponseResultImplementations§
Trait Implementations§
Source§impl Clone for GetPromptResultResponse
impl Clone for GetPromptResultResponse
Source§fn clone(&self) -> GetPromptResultResponse
fn clone(&self) -> GetPromptResultResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetPromptResultResponse
impl Debug for GetPromptResultResponse
Source§impl<'de> Deserialize<'de> for GetPromptResultResponse
impl<'de> Deserialize<'de> for GetPromptResultResponse
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 GetPromptResultResponse
impl RefUnwindSafe for GetPromptResultResponse
impl Send for GetPromptResultResponse
impl Sync for GetPromptResultResponse
impl Unpin for GetPromptResultResponse
impl UnsafeUnpin for GetPromptResultResponse
impl UnwindSafe for GetPromptResultResponse
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