pub struct GetPromptResult {
pub description: Option<String>,
pub messages: Vec<PromptMessage>,
pub meta: Option<ResultMetaObject>,
pub result_type: String,
}Expand description
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<GetPromptResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetPromptResult, <__D as Deserializer<'de>>::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) -> GetPromptResultResponseResult
fn from(value: GetPromptResult) -> GetPromptResultResponseResult
Converts to this type from the input type.
Source§impl From<GetPromptResult> for ServerResult
impl From<GetPromptResult> for ServerResult
Source§fn from(value: GetPromptResult) -> ServerResult
fn from(value: GetPromptResult) -> ServerResult
Converts to this type from the input type.
Source§impl From<GetPromptResult> for Result
impl From<GetPromptResult> for Result
Source§fn from(value: GetPromptResult) -> Result
fn from(value: GetPromptResult) -> Result
Converts to this type from the input type.
Source§impl From<GetPromptResult> for MessageFromServer
impl From<GetPromptResult> for MessageFromServer
Source§fn from(value: GetPromptResult) -> MessageFromServer
fn from(value: GetPromptResult) -> MessageFromServer
Converts to this type from the input type.
Source§impl Serialize for GetPromptResult
impl Serialize for GetPromptResult
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<ServerResult> for GetPromptResult
impl TryFrom<ServerResult> for GetPromptResult
Source§fn try_from(
value: ServerResult,
) -> Result<GetPromptResult, <GetPromptResult as TryFrom<ServerResult>>::Error>
fn try_from( value: ServerResult, ) -> Result<GetPromptResult, <GetPromptResult as TryFrom<ServerResult>>::Error>
Performs the conversion.
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