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