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