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