pub struct UpdateGroupCallMessagesDeleted {
pub group_call_id: i32,
pub message_ids: Vec<i32>,
}Expand description
Some group call messages were deleted
Fields§
§group_call_id: i32Identifier of the group call
message_ids: Vec<i32>Identifiers of the deleted messages
Trait Implementations§
Source§impl Clone for UpdateGroupCallMessagesDeleted
impl Clone for UpdateGroupCallMessagesDeleted
Source§fn clone(&self) -> UpdateGroupCallMessagesDeleted
fn clone(&self) -> UpdateGroupCallMessagesDeleted
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 Default for UpdateGroupCallMessagesDeleted
impl Default for UpdateGroupCallMessagesDeleted
Source§fn default() -> UpdateGroupCallMessagesDeleted
fn default() -> UpdateGroupCallMessagesDeleted
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateGroupCallMessagesDeleted
impl<'de> Deserialize<'de> for UpdateGroupCallMessagesDeleted
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateGroupCallMessagesDeleted
impl PartialEq for UpdateGroupCallMessagesDeleted
Source§fn eq(&self, other: &UpdateGroupCallMessagesDeleted) -> bool
fn eq(&self, other: &UpdateGroupCallMessagesDeleted) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateGroupCallMessagesDeleted
Auto Trait Implementations§
impl Freeze for UpdateGroupCallMessagesDeleted
impl RefUnwindSafe for UpdateGroupCallMessagesDeleted
impl Send for UpdateGroupCallMessagesDeleted
impl Sync for UpdateGroupCallMessagesDeleted
impl Unpin for UpdateGroupCallMessagesDeleted
impl UnsafeUnpin for UpdateGroupCallMessagesDeleted
impl UnwindSafe for UpdateGroupCallMessagesDeleted
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