pub enum GroupCallParticipant {
GroupCallParticipant(GroupCallParticipant),
}Variants§
GroupCallParticipant(GroupCallParticipant)
Represents a group call participant
Trait Implementations§
Source§impl Clone for GroupCallParticipant
impl Clone for GroupCallParticipant
Source§fn clone(&self) -> GroupCallParticipant
fn clone(&self) -> GroupCallParticipant
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GroupCallParticipant
impl Debug for GroupCallParticipant
Source§impl<'de> Deserialize<'de> for GroupCallParticipant
impl<'de> Deserialize<'de> for GroupCallParticipant
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 GroupCallParticipant
impl PartialEq for GroupCallParticipant
Source§fn eq(&self, other: &GroupCallParticipant) -> bool
fn eq(&self, other: &GroupCallParticipant) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GroupCallParticipant
impl Serialize for GroupCallParticipant
impl StructuralPartialEq for GroupCallParticipant
Auto Trait Implementations§
impl Freeze for GroupCallParticipant
impl RefUnwindSafe for GroupCallParticipant
impl Send for GroupCallParticipant
impl Sync for GroupCallParticipant
impl Unpin for GroupCallParticipant
impl UnsafeUnpin for GroupCallParticipant
impl UnwindSafe for GroupCallParticipant
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