pub struct CommandOptionChoiceData<T> {
pub name: String,
pub name_localizations: Option<HashMap<String, String>>,
pub value: T,
}Expand description
Data of CommandOptionChoice.
Fields§
§name: StringName of the choice. Must be 100 characters or less.
name_localizations: Option<HashMap<String, String>>Localization dictionary for the name field.
Defaults to no localizations.
Keys must be valid locales and values must be 100 characters or less.
See CommandOption’s documentation for more info.
value: TValue of the choice. Must be 100 characters or less if it is a string.
Trait Implementations§
source§impl<T: Clone> Clone for CommandOptionChoiceData<T>
impl<T: Clone> Clone for CommandOptionChoiceData<T>
source§fn clone(&self) -> CommandOptionChoiceData<T>
fn clone(&self) -> CommandOptionChoiceData<T>
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<T: Debug> Debug for CommandOptionChoiceData<T>
impl<T: Debug> Debug for CommandOptionChoiceData<T>
source§impl<'de, T> Deserialize<'de> for CommandOptionChoiceData<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for CommandOptionChoiceData<T>where
T: Deserialize<'de>,
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<T: PartialEq> PartialEq<CommandOptionChoiceData<T>> for CommandOptionChoiceData<T>
impl<T: PartialEq> PartialEq<CommandOptionChoiceData<T>> for CommandOptionChoiceData<T>
source§fn eq(&self, other: &CommandOptionChoiceData<T>) -> bool
fn eq(&self, other: &CommandOptionChoiceData<T>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.