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