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