pub struct SubscriptionsAcknowledgedNotificationParams {
pub meta: Option<NotificationMetaObject>,
pub notifications: SubscriptionFilter,
}Expand description
Latest MCP Protocol 2026_07_28 Parameters for a {@link SubscriptionsAcknowledgedNotificationnotifications/subscriptions/acknowledged} notification.
JSON schema
{
"description": "Parameters for a {@link SubscriptionsAcknowledgedNotificationnotifications/subscriptions/acknowledged} notification.",
"type": "object",
"required": [
"notifications"
],
"properties": {
"_meta": {
"$ref": "#/$defs/NotificationMetaObject"
},
"notifications": {
"description": "The subset of requested notification types the server agreed to honor.\nOnly includes notification types the server actually supports; if the\nclient requested an unsupported type (e.g., promptsListChanged when\nthe server has no prompts), it is omitted from this set.",
"$ref": "#/$defs/SubscriptionFilter"
}
}
}Fields§
§meta: Option<NotificationMetaObject>§notifications: SubscriptionFilterThe subset of requested notification types the server agreed to honor. Only includes notification types the server actually supports; if the client requested an unsupported type (e.g., promptsListChanged when the server has no prompts), it is omitted from this set.
Trait Implementations§
Source§impl Clone for SubscriptionsAcknowledgedNotificationParams
impl Clone for SubscriptionsAcknowledgedNotificationParams
Source§fn clone(&self) -> SubscriptionsAcknowledgedNotificationParams
fn clone(&self) -> SubscriptionsAcknowledgedNotificationParams
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 Default for SubscriptionsAcknowledgedNotificationParams
impl Default for SubscriptionsAcknowledgedNotificationParams
Source§fn default() -> SubscriptionsAcknowledgedNotificationParams
fn default() -> SubscriptionsAcknowledgedNotificationParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SubscriptionsAcknowledgedNotificationParams
impl<'de> Deserialize<'de> for SubscriptionsAcknowledgedNotificationParams
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 SubscriptionsAcknowledgedNotificationParams
impl RefUnwindSafe for SubscriptionsAcknowledgedNotificationParams
impl Send for SubscriptionsAcknowledgedNotificationParams
impl Sync for SubscriptionsAcknowledgedNotificationParams
impl Unpin for SubscriptionsAcknowledgedNotificationParams
impl UnsafeUnpin for SubscriptionsAcknowledgedNotificationParams
impl UnwindSafe for SubscriptionsAcknowledgedNotificationParams
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