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