pub struct GroupCallParticipants {
pub total_count: i32,
pub participant_ids: Vec<MessageSender>,
}Expand description
Contains identifiers of group call participants
Fields§
§total_count: i32Total number of group call participants
participant_ids: Vec<MessageSender>Identifiers of the participants
Trait Implementations§
Source§impl Clone for GroupCallParticipants
impl Clone for GroupCallParticipants
Source§fn clone(&self) -> GroupCallParticipants
fn clone(&self) -> GroupCallParticipants
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 GroupCallParticipants
impl Debug for GroupCallParticipants
Source§impl Default for GroupCallParticipants
impl Default for GroupCallParticipants
Source§fn default() -> GroupCallParticipants
fn default() -> GroupCallParticipants
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupCallParticipants
impl<'de> Deserialize<'de> for GroupCallParticipants
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 GroupCallParticipants
impl PartialEq for GroupCallParticipants
Source§impl Serialize for GroupCallParticipants
impl Serialize for GroupCallParticipants
impl StructuralPartialEq for GroupCallParticipants
Auto Trait Implementations§
impl Freeze for GroupCallParticipants
impl RefUnwindSafe for GroupCallParticipants
impl Send for GroupCallParticipants
impl Sync for GroupCallParticipants
impl Unpin for GroupCallParticipants
impl UnsafeUnpin for GroupCallParticipants
impl UnwindSafe for GroupCallParticipants
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