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