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