Enum roblox::enumeration::AppShellActionType [−][src]
pub enum AppShellActionType { None, OpenApp, TapChatTab, TapConversationEntry, TapAvatarTab, ReadConversation, TapGamePageTab, TapHomePageTab, GamePageLoaded, HomePageLoaded, AvatarEditorPageLoaded, }
Expand description
The AppShellActionType enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::AppShellActionType::None.name(), "None");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::AppShellActionType::None.value(), None);
Getting all EnumItems:
let enum_items = roblox::enums::AppShellActionType::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AppShellActionType
impl Send for AppShellActionType
impl Sync for AppShellActionType
impl Unpin for AppShellActionType
impl UnwindSafe for AppShellActionType
Blanket Implementations
Mutably borrows from an owned value. Read more