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