pub enum CommandOptionValue {
Integer(i64),
Number(f64),
}
Expand description
Type used in the max_value
and min_value
CommandOption
field.
Note that the right variant must be selected based on the
CommandOption
’s CommandOptionType
.
Variants§
Trait Implementations§
source§impl Clone for CommandOptionValue
impl Clone for CommandOptionValue
source§fn clone(&self) -> CommandOptionValue
fn clone(&self) -> CommandOptionValue
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 CommandOptionValue
impl Debug for CommandOptionValue
source§impl<'de> Deserialize<'de> for CommandOptionValue
impl<'de> Deserialize<'de> for CommandOptionValue
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<CommandOptionValue> for CommandOptionValue
impl PartialEq<CommandOptionValue> for CommandOptionValue
source§fn eq(&self, other: &CommandOptionValue) -> bool
fn eq(&self, other: &CommandOptionValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.