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