Enum roblox::enumeration::DialogTone [−][src]
pub enum DialogTone { Neutral, Friendly, Enemy, }
Expand description
The DialogTone enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::DialogTone::Neutral.name(), "Neutral");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::DialogTone::Neutral.value(), Neutral);
Getting all EnumItems:
let enum_items = roblox::enums::DialogTone::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DialogTone
impl Send for DialogTone
impl Sync for DialogTone
impl Unpin for DialogTone
impl UnwindSafe for DialogTone
Blanket Implementations
Mutably borrows from an owned value. Read more