pub enum ElicitationState {
    Pending,
    Accepted,
    Declined,
    Cancelled,
    TimedOut,
}Expand description
State of an elicitation request
Variants§
Pending
Waiting for user response
Accepted
User provided input
Declined
User explicitly declined
Cancelled
User cancelled/dismissed
TimedOut
Response timeout exceeded
Trait Implementations§
Source§impl Clone for ElicitationState
 
impl Clone for ElicitationState
Source§fn clone(&self) -> ElicitationState
 
fn clone(&self) -> ElicitationState
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 ElicitationState
 
impl Debug for ElicitationState
Source§impl<'de> Deserialize<'de> for ElicitationState
 
impl<'de> Deserialize<'de> for ElicitationState
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 PartialEq for ElicitationState
 
impl PartialEq for ElicitationState
Source§impl Serialize for ElicitationState
 
impl Serialize for ElicitationState
impl StructuralPartialEq for ElicitationState
Auto Trait Implementations§
impl Freeze for ElicitationState
impl RefUnwindSafe for ElicitationState
impl Send for ElicitationState
impl Sync for ElicitationState
impl Unpin for ElicitationState
impl UnwindSafe for ElicitationState
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