pub enum CommandOptionChoice {
String(CommandOptionChoiceData<String>),
Integer(CommandOptionChoiceData<i64>),
Number(CommandOptionChoiceData<f64>),
}Expand description
A predetermined choice users can select.
Note that the right variant must be selected based on the
CommandOption’s CommandOptionType.
Variants§
String(CommandOptionChoiceData<String>)
String choice.
Integer(CommandOptionChoiceData<i64>)
Integer choice.
Number(CommandOptionChoiceData<f64>)
Number choice.
Trait Implementations§
source§impl Clone for CommandOptionChoice
impl Clone for CommandOptionChoice
source§fn clone(&self) -> CommandOptionChoice
fn clone(&self) -> CommandOptionChoice
Returns a copy of the value. Read more
1.0.0 · 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 CommandOptionChoice
impl Debug for CommandOptionChoice
source§impl<'de> Deserialize<'de> for CommandOptionChoice
impl<'de> Deserialize<'de> for CommandOptionChoice
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<CommandOptionChoice> for CommandOptionChoice
impl PartialEq<CommandOptionChoice> for CommandOptionChoice
source§fn eq(&self, other: &CommandOptionChoice) -> bool
fn eq(&self, other: &CommandOptionChoice) -> bool
This method tests for
self and other values to be equal, and is used
by ==.