pub enum ChatCommand {
Macro(u8),
BeginChat,
Reply,
Cancel,
}Variants§
Macro(u8)
pass in a number from 1-15 representing the chat macro to launch (actual values 0-14)
BeginChat
Open up a new chat window
Reply
Reply to last private chat
Cancel
Close chat window
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChatCommand
impl RefUnwindSafe for ChatCommand
impl Send for ChatCommand
impl Sync for ChatCommand
impl Unpin for ChatCommand
impl UnwindSafe for ChatCommand
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more