Enum roblox::enumeration::AssetType [−][src]
pub enum AssetType {}Show 54 variants
Image, TShirt, Audio, Mesh, Lua, Hat, Place, Model, Shirt, Pants, Decal, Head, Face, Gear, Badge, Animation, Torso, RightArm, LeftArm, LeftLeg, RightLeg, Package, GamePass, Plugin, MeshPart, HairAccessory, FaceAccessory, NeckAccessory, ShoulderAccessory, FrontAccessory, BackAccessory, WaistAccessory, ClimbAnimation, DeathAnimation, FallAnimation, IdleAnimation, JumpAnimation, RunAnimation, SwimAnimation, WalkAnimation, PoseAnimation, EarAccessory, EyeAccessory, EmoteAnimation, Video, TShirtAccessory, ShirtAccessory, PantsAccessory, JacketAccessory, SweaterAccessory, ShortsAccessory, LeftShoeAccessory, RightShoeAccessory, DressSkirtAccessory,
Expand description
The AssetType enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::AssetType::Image.name(), "Image");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::AssetType::Image.value(), Image);
Getting all EnumItems:
let enum_items = roblox::enums::AssetType::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AssetType
impl UnwindSafe for AssetType
Blanket Implementations
Mutably borrows from an owned value. Read more