Enum roblox::enumeration::BodyPartR15 [−][src]
pub enum BodyPartR15 {}Show 17 variants
Head, UpperTorso, LowerTorso, LeftFoot, LeftLowerLeg, LeftUpperLeg, RightFoot, RightLowerLeg, RightUpperLeg, LeftHand, LeftLowerArm, LeftUpperArm, RightHand, RightLowerArm, RightUpperArm, RootPart, Unknown,
Expand description
The BodyPartR15 enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::BodyPartR15::Head.name(), "Head");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::BodyPartR15::Head.value(), Head);
Getting all EnumItems:
let enum_items = roblox::enums::BodyPartR15::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for BodyPartR15
impl Send for BodyPartR15
impl Sync for BodyPartR15
impl Unpin for BodyPartR15
impl UnwindSafe for BodyPartR15
Blanket Implementations
Mutably borrows from an owned value. Read more