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