pub struct JsonObject(pub BTreeMap<String, JsonValue>);Expand description
Latest MCP Protocol 2026_07_28 JsonObject
JSON schema
{
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/JSONValue"
}
}Tuple Fields§
§0: BTreeMap<String, JsonValue>Trait Implementations§
Source§impl Clone for JsonObject
impl Clone for JsonObject
Source§fn clone(&self) -> JsonObject
fn clone(&self) -> JsonObject
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 JsonObject
impl Debug for JsonObject
Source§impl<'de> Deserialize<'de> for JsonObject
impl<'de> Deserialize<'de> for JsonObject
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<JsonObject> for JsonValue
impl From<JsonObject> for JsonValue
Source§fn from(value: JsonObject) -> Self
fn from(value: JsonObject) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JsonObject
impl RefUnwindSafe for JsonObject
impl Send for JsonObject
impl Sync for JsonObject
impl Unpin for JsonObject
impl UnsafeUnpin for JsonObject
impl UnwindSafe for JsonObject
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