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