pub struct UpdateGroupCallParticipant {
pub group_call_id: i32,
pub participant: GroupCallParticipant,
}
Expand description
Information about a group call participant was changed. The updates are sent only after the group call is received through getGroupCall and only if the call is joined or being joined
Fields§
§group_call_id: i32
Identifier of group call
participant: GroupCallParticipant
New data about a participant
Trait Implementations§
Source§impl Clone for UpdateGroupCallParticipant
impl Clone for UpdateGroupCallParticipant
Source§fn clone(&self) -> UpdateGroupCallParticipant
fn clone(&self) -> UpdateGroupCallParticipant
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 UpdateGroupCallParticipant
impl Debug for UpdateGroupCallParticipant
Source§impl<'de> Deserialize<'de> for UpdateGroupCallParticipant
impl<'de> Deserialize<'de> for UpdateGroupCallParticipant
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 UpdateGroupCallParticipant
Auto Trait Implementations§
impl Freeze for UpdateGroupCallParticipant
impl RefUnwindSafe for UpdateGroupCallParticipant
impl Send for UpdateGroupCallParticipant
impl Sync for UpdateGroupCallParticipant
impl Unpin for UpdateGroupCallParticipant
impl UnwindSafe for UpdateGroupCallParticipant
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