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