pub enum ElicitationAction {
Accept,
Decline,
Cancel,
}Expand description
Represents the possible actions a user can take in response to an elicitation request.
When a server requests user input through elicitation, the user can:
- Accept: Provide the requested information and continue
- Decline: Refuse to provide the information but continue the operation
- Cancel: Stop the entire operation
Variants§
Accept
User accepts the request and provides the requested information
Decline
User declines to provide the information but allows the operation to continue
Cancel
User cancels the entire operation
Trait Implementations§
Source§impl Clone for ElicitationAction
impl Clone for ElicitationAction
Source§fn clone(&self) -> ElicitationAction
fn clone(&self) -> ElicitationAction
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 ElicitationAction
impl Debug for ElicitationAction
Source§impl<'de> Deserialize<'de> for ElicitationAction
impl<'de> Deserialize<'de> for ElicitationAction
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ElicitationAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ElicitationAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for ElicitationAction
impl JsonSchema for ElicitationAction
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ElicitationAction
impl PartialEq for ElicitationAction
Source§impl Serialize for ElicitationAction
impl Serialize for ElicitationAction
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
impl Eq for ElicitationAction
impl StructuralPartialEq for ElicitationAction
Auto Trait Implementations§
impl Freeze for ElicitationAction
impl RefUnwindSafe for ElicitationAction
impl Send for ElicitationAction
impl Sync for ElicitationAction
impl Unpin for ElicitationAction
impl UnsafeUnpin for ElicitationAction
impl UnwindSafe for ElicitationAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.