pub struct UnsubscribeRequestParams {
pub meta: Option<UnsubscribeMeta>,
pub uri: String,
}Expand description
Parameters for a resources/unsubscribe request.
JSON schema
{
"description": "Parameters for a resources/unsubscribe request.",
"type": "object",
"required": [
"uri"
],
"properties": {
"_meta": {
"description": "See [General fields: _meta](https://modelcontextprotocol.io/specification/2025-11-25/basic/index#meta) for notes on _meta usage.",
"type": "object",
"properties": {
"progressToken": {
"description": "If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.",
"$ref": "#/$defs/ProgressToken"
}
},
"additionalProperties": {}
},
"uri": {
"description": "The URI of the resource. The URI can use any protocol; it is up to the server how to interpret it.",
"type": "string",
"format": "uri"
}
}
}Fields§
§meta: Option<UnsubscribeMeta>§uri: StringThe URI of the resource. The URI can use any protocol; it is up to the server how to interpret it.
Trait Implementations§
Source§impl Clone for UnsubscribeRequestParams
impl Clone for UnsubscribeRequestParams
Source§fn clone(&self) -> UnsubscribeRequestParams
fn clone(&self) -> UnsubscribeRequestParams
Returns a duplicate of the value. Read more
1.0.0 · 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 UnsubscribeRequestParams
impl Debug for UnsubscribeRequestParams
Source§impl<'de> Deserialize<'de> for UnsubscribeRequestParams
impl<'de> Deserialize<'de> for UnsubscribeRequestParams
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 UnsubscribeRequestParams
impl RefUnwindSafe for UnsubscribeRequestParams
impl Send for UnsubscribeRequestParams
impl Sync for UnsubscribeRequestParams
impl Unpin for UnsubscribeRequestParams
impl UnwindSafe for UnsubscribeRequestParams
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