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