pub struct ApiDeleteMemberChatItem {
pub group_id: i64,
pub chat_item_ids: Vec<i64>,
}Expand description
§Message commands
Commands to send, update, delete, moderate messages and set message reactions
Moderate message. Requires Moderator role (and higher than message author’s).
Network usage: background.
Syntax:
/_delete member item #<groupId> <chatItemIds[0]>[,<chatItemIds[1]>...]Fields§
§group_id: i64§chat_item_ids: Vec<i64>Trait Implementations§
Source§impl Clone for ApiDeleteMemberChatItem
impl Clone for ApiDeleteMemberChatItem
Source§fn clone(&self) -> ApiDeleteMemberChatItem
fn clone(&self) -> ApiDeleteMemberChatItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ApiDeleteMemberChatItem
impl Debug for ApiDeleteMemberChatItem
Source§impl PartialEq for ApiDeleteMemberChatItem
impl PartialEq for ApiDeleteMemberChatItem
impl StructuralPartialEq for ApiDeleteMemberChatItem
Auto Trait Implementations§
impl Freeze for ApiDeleteMemberChatItem
impl RefUnwindSafe for ApiDeleteMemberChatItem
impl Send for ApiDeleteMemberChatItem
impl Sync for ApiDeleteMemberChatItem
impl Unpin for ApiDeleteMemberChatItem
impl UnwindSafe for ApiDeleteMemberChatItem
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