Enum ElicitationResponse
pub enum ElicitationResponse {
Accept {
content: Value,
},
Decline,
Cancel,
}Expand description
Response to an elicitation/create request.
Three-action model per the RFD. Decline and Cancel both
collapse to Ok(None) at the Channel::request_choice layer
in Phase 1 — see the design spec’s “Open Questions” for the
rationale on deferring the distinction.
Variants§
Trait Implementations§
Source§impl Debug for ElicitationResponse
impl Debug for ElicitationResponse
Source§impl<'de> Deserialize<'de> for ElicitationResponse
impl<'de> Deserialize<'de> for ElicitationResponse
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 ElicitationResponse
impl RefUnwindSafe for ElicitationResponse
impl Send for ElicitationResponse
impl Sync for ElicitationResponse
impl Unpin for ElicitationResponse
impl UnsafeUnpin for ElicitationResponse
impl UnwindSafe for ElicitationResponse
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