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