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