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