pub struct ElicitationCompleteNotification {
pub method: String,
pub params: ElicitationCompleteNotificationParams,
}Expand description
Core MCP protocol types and error handling Method: “notifications/elicitation/complete” (per MCP 2025-11-25)
Sent by the client when an elicitation has been completed.
Fields§
§method: StringMethod name (always “notifications/elicitation/complete”)
params: ElicitationCompleteNotificationParamsElicitation complete parameters
Implementations§
Trait Implementations§
Source§impl Clone for ElicitationCompleteNotification
impl Clone for ElicitationCompleteNotification
Source§fn clone(&self) -> ElicitationCompleteNotification
fn clone(&self) -> ElicitationCompleteNotification
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<'de> Deserialize<'de> for ElicitationCompleteNotification
impl<'de> Deserialize<'de> for ElicitationCompleteNotification
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ElicitationCompleteNotification, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ElicitationCompleteNotification, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ElicitationCompleteNotification
impl Serialize for ElicitationCompleteNotification
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ElicitationCompleteNotification
impl RefUnwindSafe for ElicitationCompleteNotification
impl Send for ElicitationCompleteNotification
impl Sync for ElicitationCompleteNotification
impl Unpin for ElicitationCompleteNotification
impl UnsafeUnpin for ElicitationCompleteNotification
impl UnwindSafe for ElicitationCompleteNotification
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