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