pub struct UpdateGroupCallParticipants {
pub call: InputGroupCall,
pub participants: Vec<GroupCallParticipant>,
pub version: i32,
}Expand description
Generated from:
updateGroupCallParticipants#f2ebdb4e call:InputGroupCall participants:Vector<GroupCallParticipant> version:int = UpdateFields§
§call: InputGroupCall§participants: Vec<GroupCallParticipant>§version: i32Trait 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 Deserializable for UpdateGroupCallParticipants
impl Deserializable for UpdateGroupCallParticipants
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<UpdateGroupCallParticipants> for Update
impl From<UpdateGroupCallParticipants> for Update
Source§fn from(x: UpdateGroupCallParticipants) -> Self
fn from(x: UpdateGroupCallParticipants) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateGroupCallParticipants
impl Identifiable for UpdateGroupCallParticipants
Source§const CONSTRUCTOR_ID: u32 = 0xf2ebdb4e
const CONSTRUCTOR_ID: u32 = 0xf2ebdb4e
The constructor ID as specified in the TL schema.
Source§impl TryFrom<Update> for UpdateGroupCallParticipants
impl TryFrom<Update> for UpdateGroupCallParticipants
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