pub enum ChatInputAnswerState {
Draft,
Submitted,
Skipped,
}Expand description
Answer lifecycle state.
Variants§
Trait Implementations§
Source§impl Clone for ChatInputAnswerState
impl Clone for ChatInputAnswerState
Source§fn clone(&self) -> ChatInputAnswerState
fn clone(&self) -> ChatInputAnswerState
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 ChatInputAnswerState
Source§impl Debug for ChatInputAnswerState
impl Debug for ChatInputAnswerState
Source§impl<'de> Deserialize<'de> for ChatInputAnswerState
impl<'de> Deserialize<'de> for ChatInputAnswerState
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 ChatInputAnswerState
Source§impl Hash for ChatInputAnswerState
impl Hash for ChatInputAnswerState
Source§impl PartialEq for ChatInputAnswerState
impl PartialEq for ChatInputAnswerState
Source§fn eq(&self, other: &ChatInputAnswerState) -> bool
fn eq(&self, other: &ChatInputAnswerState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChatInputAnswerState
impl Serialize for ChatInputAnswerState
impl StructuralPartialEq for ChatInputAnswerState
Auto Trait Implementations§
impl Freeze for ChatInputAnswerState
impl RefUnwindSafe for ChatInputAnswerState
impl Send for ChatInputAnswerState
impl Sync for ChatInputAnswerState
impl Unpin for ChatInputAnswerState
impl UnsafeUnpin for ChatInputAnswerState
impl UnwindSafe for ChatInputAnswerState
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