pub struct CommandOptionChoice {
pub name: String,
pub name_localizations: Option<HashMap<String, String>>,
pub value: CommandOptionChoiceValue,
}
Expand description
A predetermined choice users can select.
Fields§
§name: String
Name 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: CommandOptionChoiceValue
Value of the 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 for CommandOptionChoice
impl PartialEq for CommandOptionChoice
source§impl Serialize for CommandOptionChoice
impl Serialize for CommandOptionChoice
impl StructuralPartialEq for CommandOptionChoice
Auto Trait Implementations§
impl Freeze for CommandOptionChoice
impl RefUnwindSafe for CommandOptionChoice
impl Send for CommandOptionChoice
impl Sync for CommandOptionChoice
impl Unpin for CommandOptionChoice
impl UnwindSafe for CommandOptionChoice
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)