pub struct UpdateGroupCallParticipants {
pub group_call_id: i32,
pub participant_user_ids: Vec<i64>,
}Expand description
The list of group call participants that can send and receive encrypted call data has changed; for group calls not bound to a chat only
Fields§
§group_call_id: i32Identifier of the group call
participant_user_ids: Vec<i64>New list of group call participant user identifiers. The identifiers may be invalid or the corresponding users may be unknown. The participants must be shown in the list of group call participants even if there is no information about them
Trait Implementations§
Source§impl Clone for UpdateGroupCallParticipants
impl Clone for UpdateGroupCallParticipants
Source§fn clone(&self) -> UpdateGroupCallParticipants
fn clone(&self) -> UpdateGroupCallParticipants
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 UpdateGroupCallParticipants
impl Debug for UpdateGroupCallParticipants
Source§impl Default for UpdateGroupCallParticipants
impl Default for UpdateGroupCallParticipants
Source§fn default() -> UpdateGroupCallParticipants
fn default() -> UpdateGroupCallParticipants
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateGroupCallParticipants
impl<'de> Deserialize<'de> for UpdateGroupCallParticipants
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
impl StructuralPartialEq for UpdateGroupCallParticipants
Auto Trait Implementations§
impl Freeze for UpdateGroupCallParticipants
impl RefUnwindSafe for UpdateGroupCallParticipants
impl Send for UpdateGroupCallParticipants
impl Sync for UpdateGroupCallParticipants
impl Unpin for UpdateGroupCallParticipants
impl UnsafeUnpin for UpdateGroupCallParticipants
impl UnwindSafe for UpdateGroupCallParticipants
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