pub enum MsgCmd {
SendFriendMessage {
target: i64,
quote: Option<i32>,
message_chain: Vec<MsgUnit>,
},
SendGroupMessage {
target: i64,
quote: Option<i32>,
message_chain: Vec<MsgUnit>,
},
SendTempMessage {
qq: i64,
group: i64,
quote: Option<i32>,
message_chain: Vec<MsgUnit>,
},
SendNudge {
target: i64,
subject: i64,
kind: NudgeKind,
},
Recall {
target: i64,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MsgCmd
impl RefUnwindSafe for MsgCmd
impl Send for MsgCmd
impl Sync for MsgCmd
impl Unpin for MsgCmd
impl UnwindSafe for MsgCmd
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