Enum roblox::enumeration::EasingStyle [−][src]
pub enum EasingStyle { Linear, Sine, Back, Quad, Quart, Quint, Bounce, Elastic, Exponential, Circular, Cubic, }
Expand description
The EasingStyle enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::EasingStyle::Linear.name(), "Linear");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::EasingStyle::Linear.value(), Linear);
Getting all EnumItems:
let enum_items = roblox::enums::EasingStyle::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for EasingStyle
impl Send for EasingStyle
impl Sync for EasingStyle
impl Unpin for EasingStyle
impl UnwindSafe for EasingStyle
Blanket Implementations
Mutably borrows from an owned value. Read more