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