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