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