pub struct ListPromptsResultResponse {
pub id: RequestId,
pub result: ListPromptsResult,
/* private fields */
}Expand description
Latest MCP Protocol 2026_07_28 A successful response from the server for a {@link ListPromptsRequestprompts/list} request.
JSON schema
{
"description": "A successful response from the server for a {@link ListPromptsRequestprompts/list} request.",
"type": "object",
"required": [
"id",
"jsonrpc",
"result"
],
"properties": {
"id": {
"$ref": "#/$defs/RequestId"
},
"jsonrpc": {
"type": "string",
"const": "2.0"
},
"result": {
"$ref": "#/$defs/ListPromptsResult"
}
}
}Fields§
§id: RequestId§result: ListPromptsResultImplementations§
Trait Implementations§
Source§impl Clone for ListPromptsResultResponse
impl Clone for ListPromptsResultResponse
Source§fn clone(&self) -> ListPromptsResultResponse
fn clone(&self) -> ListPromptsResultResponse
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 ListPromptsResultResponse
impl Debug for ListPromptsResultResponse
Source§impl<'de> Deserialize<'de> for ListPromptsResultResponse
impl<'de> Deserialize<'de> for ListPromptsResultResponse
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 ListPromptsResultResponse
impl RefUnwindSafe for ListPromptsResultResponse
impl Send for ListPromptsResultResponse
impl Sync for ListPromptsResultResponse
impl Unpin for ListPromptsResultResponse
impl UnsafeUnpin for ListPromptsResultResponse
impl UnwindSafe for ListPromptsResultResponse
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