pub struct GetPromptResult {
pub description: Option<String>,
pub messages: Vec<PromptMessage>,
pub meta: Option<ResultMetaObject>,
pub result_type: String,
}Expand description
Latest MCP Protocol 2026_07_28 The result returned by the server for a {@link GetPromptRequestprompts/get} request.
JSON schema
{
"description": "The result returned by the server for a {@link GetPromptRequestprompts/get} request.",
"type": "object",
"required": [
"messages",
"resultType"
],
"properties": {
"_meta": {
"$ref": "#/$defs/ResultMetaObject"
},
"description": {
"description": "An optional description for the prompt.",
"type": "string"
},
"messages": {
"type": "array",
"items": {
"$ref": "#/$defs/PromptMessage"
}
},
"resultType": {
"description": "Indicates the type of the result, which allows the client to determine\nhow to parse the result object.\n\nServers implementing this protocol version MUST include this field.\nFor backward compatibility, when a client receives a result from a\nserver implementing an earlier protocol version (which does not include\nresultType), the client MUST treat the absent field as \"complete\".",
"type": "string"
}
}
}Fields§
§description: Option<String>An optional description for the prompt.
messages: Vec<PromptMessage>§meta: Option<ResultMetaObject>§result_type: StringIndicates the type of the result, which allows the client to determine how to parse the result object. Servers implementing this protocol version MUST include this field. For backward compatibility, when a client receives a result from a server implementing an earlier protocol version (which does not include resultType), the client MUST treat the absent field as “complete”.
Trait Implementations§
Source§impl Clone for GetPromptResult
impl Clone for GetPromptResult
Source§fn clone(&self) -> GetPromptResult
fn clone(&self) -> GetPromptResult
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 GetPromptResult
impl Debug for GetPromptResult
Source§impl<'de> Deserialize<'de> for GetPromptResult
impl<'de> Deserialize<'de> for GetPromptResult
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 From<GetPromptResult> for GetPromptResultResponseResult
impl From<GetPromptResult> for GetPromptResultResponseResult
Source§fn from(value: GetPromptResult) -> Self
fn from(value: GetPromptResult) -> Self
Converts to this type from the input type.
Source§impl From<GetPromptResult> for ServerResult
impl From<GetPromptResult> for ServerResult
Source§fn from(value: GetPromptResult) -> Self
fn from(value: GetPromptResult) -> Self
Converts to this type from the input type.
Source§impl From<GetPromptResult> for GenericResult
impl From<GetPromptResult> for GenericResult
Source§fn from(value: GetPromptResult) -> Self
fn from(value: GetPromptResult) -> Self
Converts to this type from the input type.
Source§impl From<GetPromptResult> for MessageFromServer
impl From<GetPromptResult> for MessageFromServer
Source§fn from(value: GetPromptResult) -> Self
fn from(value: GetPromptResult) -> Self
Converts to this type from the input type.
Source§impl Serialize for GetPromptResult
impl Serialize for GetPromptResult
Source§impl TryFrom<ServerResult> for GetPromptResult
impl TryFrom<ServerResult> for GetPromptResult
Auto Trait Implementations§
impl Freeze for GetPromptResult
impl RefUnwindSafe for GetPromptResult
impl Send for GetPromptResult
impl Sync for GetPromptResult
impl Unpin for GetPromptResult
impl UnsafeUnpin for GetPromptResult
impl UnwindSafe for GetPromptResult
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