pub struct ChatEventVideoChatParticipantIsMutedToggled {
pub participant_id: MessageSender,
pub is_muted: bool,
}Expand description
A video chat participant was muted or unmuted
Fields§
§participant_id: MessageSenderIdentifier of the affected group call participant
is_muted: boolNew value of is_muted
Trait Implementations§
Source§impl Clone for ChatEventVideoChatParticipantIsMutedToggled
impl Clone for ChatEventVideoChatParticipantIsMutedToggled
Source§fn clone(&self) -> ChatEventVideoChatParticipantIsMutedToggled
fn clone(&self) -> ChatEventVideoChatParticipantIsMutedToggled
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<'de> Deserialize<'de> for ChatEventVideoChatParticipantIsMutedToggled
impl<'de> Deserialize<'de> for ChatEventVideoChatParticipantIsMutedToggled
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 ChatEventVideoChatParticipantIsMutedToggled
impl PartialEq for ChatEventVideoChatParticipantIsMutedToggled
Source§fn eq(&self, other: &ChatEventVideoChatParticipantIsMutedToggled) -> bool
fn eq(&self, other: &ChatEventVideoChatParticipantIsMutedToggled) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChatEventVideoChatParticipantIsMutedToggled
Auto Trait Implementations§
impl Freeze for ChatEventVideoChatParticipantIsMutedToggled
impl RefUnwindSafe for ChatEventVideoChatParticipantIsMutedToggled
impl Send for ChatEventVideoChatParticipantIsMutedToggled
impl Sync for ChatEventVideoChatParticipantIsMutedToggled
impl Unpin for ChatEventVideoChatParticipantIsMutedToggled
impl UnwindSafe for ChatEventVideoChatParticipantIsMutedToggled
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