Enum roblox::enumeration::AvatarAssetType [−][src]
pub enum AvatarAssetType {}Show 36 variants
TShirt, Hat, HairAccessory, FaceAccessory, NeckAccessory, ShoulderAccessory, FrontAccessory, BackAccessory, WaistAccessory, Shirt, Pants, Gear, Head, Face, Torso, RightArm, LeftArm, LeftLeg, RightLeg, ClimbAnimation, FallAnimation, IdleAnimation, JumpAnimation, RunAnimation, SwimAnimation, WalkAnimation, EmoteAnimation, TShirtAccessory, ShirtAccessory, PantsAccessory, JacketAccessory, SweaterAccessory, ShortsAccessory, LeftShoeAccessory, RightShoeAccessory, DressSkirtAccessory,
Expand description
The AvatarAssetType enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::AvatarAssetType::TShirt.name(), "TShirt");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::AvatarAssetType::TShirt.value(), TShirt);
Getting all EnumItems:
let enum_items = roblox::enums::AvatarAssetType::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AvatarAssetType
impl Send for AvatarAssetType
impl Sync for AvatarAssetType
impl Unpin for AvatarAssetType
impl UnwindSafe for AvatarAssetType
Blanket Implementations
Mutably borrows from an owned value. Read more