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