pub struct ChatInputSelectedManyAnswerValue {
pub value: Vec<String>,
pub freeform_values: Option<Vec<String>>,
}Fields§
§value: Vec<String>§freeform_values: Option<Vec<String>>Free-form text entered in addition to selected options
Trait Implementations§
Source§impl Clone for ChatInputSelectedManyAnswerValue
impl Clone for ChatInputSelectedManyAnswerValue
Source§fn clone(&self) -> ChatInputSelectedManyAnswerValue
fn clone(&self) -> ChatInputSelectedManyAnswerValue
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<'de> Deserialize<'de> for ChatInputSelectedManyAnswerValue
impl<'de> Deserialize<'de> for ChatInputSelectedManyAnswerValue
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 ChatInputSelectedManyAnswerValue
impl PartialEq for ChatInputSelectedManyAnswerValue
Source§fn eq(&self, other: &ChatInputSelectedManyAnswerValue) -> bool
fn eq(&self, other: &ChatInputSelectedManyAnswerValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChatInputSelectedManyAnswerValue
Auto Trait Implementations§
impl Freeze for ChatInputSelectedManyAnswerValue
impl RefUnwindSafe for ChatInputSelectedManyAnswerValue
impl Send for ChatInputSelectedManyAnswerValue
impl Sync for ChatInputSelectedManyAnswerValue
impl Unpin for ChatInputSelectedManyAnswerValue
impl UnsafeUnpin for ChatInputSelectedManyAnswerValue
impl UnwindSafe for ChatInputSelectedManyAnswerValue
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