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