pub struct CallParticipant {
pub user_id: UserId,
pub joined_at: SystemTime,
pub left_at: Option<SystemTime>,
pub is_muted: bool,
pub is_video_on: bool,
pub is_screen_sharing: bool,
}Expand description
Call participant
Fields§
§user_id: UserId§joined_at: SystemTime§left_at: Option<SystemTime>§is_muted: bool§is_video_on: bool§is_screen_sharing: boolTrait Implementations§
Source§impl Clone for CallParticipant
impl Clone for CallParticipant
Source§fn clone(&self) -> CallParticipant
fn clone(&self) -> CallParticipant
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CallParticipant
impl Debug for CallParticipant
Source§impl<'de> Deserialize<'de> for CallParticipant
impl<'de> Deserialize<'de> for CallParticipant
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
Auto Trait Implementations§
impl Freeze for CallParticipant
impl RefUnwindSafe for CallParticipant
impl Send for CallParticipant
impl Sync for CallParticipant
impl Unpin for CallParticipant
impl UnwindSafe for CallParticipant
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