pub enum ChatInputQuestionKind {
Text,
Number,
Integer,
Boolean,
SingleSelect,
MultiSelect,
}Expand description
Question/input control kind.
Variants§
Trait Implementations§
Source§impl Clone for ChatInputQuestionKind
impl Clone for ChatInputQuestionKind
Source§fn clone(&self) -> ChatInputQuestionKind
fn clone(&self) -> ChatInputQuestionKind
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 moreimpl Copy for ChatInputQuestionKind
Source§impl Debug for ChatInputQuestionKind
impl Debug for ChatInputQuestionKind
Source§impl<'de> Deserialize<'de> for ChatInputQuestionKind
impl<'de> Deserialize<'de> for ChatInputQuestionKind
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 ChatInputQuestionKind
Source§impl Hash for ChatInputQuestionKind
impl Hash for ChatInputQuestionKind
Source§impl PartialEq for ChatInputQuestionKind
impl PartialEq for ChatInputQuestionKind
Source§fn eq(&self, other: &ChatInputQuestionKind) -> bool
fn eq(&self, other: &ChatInputQuestionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChatInputQuestionKind
impl Serialize for ChatInputQuestionKind
impl StructuralPartialEq for ChatInputQuestionKind
Auto Trait Implementations§
impl Freeze for ChatInputQuestionKind
impl RefUnwindSafe for ChatInputQuestionKind
impl Send for ChatInputQuestionKind
impl Sync for ChatInputQuestionKind
impl Unpin for ChatInputQuestionKind
impl UnsafeUnpin for ChatInputQuestionKind
impl UnwindSafe for ChatInputQuestionKind
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