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