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