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