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