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