pub struct AskQuestionInteractionSpec {
pub entries: Vec<AskQuestionEntry>,
}Expand description
Full specification for an interactive ask-user interaction.
Contains one or more questions to present to the user in sequence.
Maps to the Python SDK’s AskQuestionInteractionSpec.
Fields§
§entries: Vec<AskQuestionEntry>The questions to present to the user.
Trait Implementations§
Source§impl Clone for AskQuestionInteractionSpec
impl Clone for AskQuestionInteractionSpec
Source§fn clone(&self) -> AskQuestionInteractionSpec
fn clone(&self) -> AskQuestionInteractionSpec
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 Debug for AskQuestionInteractionSpec
impl Debug for AskQuestionInteractionSpec
Source§impl<'de> Deserialize<'de> for AskQuestionInteractionSpec
impl<'de> Deserialize<'de> for AskQuestionInteractionSpec
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
impl Eq for AskQuestionInteractionSpec
Source§impl PartialEq for AskQuestionInteractionSpec
impl PartialEq for AskQuestionInteractionSpec
Source§fn eq(&self, other: &AskQuestionInteractionSpec) -> bool
fn eq(&self, other: &AskQuestionInteractionSpec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AskQuestionInteractionSpec
Auto Trait Implementations§
impl Freeze for AskQuestionInteractionSpec
impl RefUnwindSafe for AskQuestionInteractionSpec
impl Send for AskQuestionInteractionSpec
impl Sync for AskQuestionInteractionSpec
impl Unpin for AskQuestionInteractionSpec
impl UnsafeUnpin for AskQuestionInteractionSpec
impl UnwindSafe for AskQuestionInteractionSpec
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