Struct call2::participant::RemoteParticipant
source · pub struct RemoteParticipant {
pub user: Arc<User>,
pub peer_id: PeerId,
pub projects: Vec<ParticipantProject>,
pub location: ParticipantLocation,
pub participant_index: ParticipantIndex,
pub muted: bool,
pub speaking: bool,
pub video_tracks: HashMap<Sid, Arc<RemoteVideoTrack>>,
pub audio_tracks: HashMap<Sid, Arc<RemoteAudioTrack>>,
}
Fields§
§user: Arc<User>
§peer_id: PeerId
§projects: Vec<ParticipantProject>
§location: ParticipantLocation
§participant_index: ParticipantIndex
§muted: bool
§speaking: bool
§video_tracks: HashMap<Sid, Arc<RemoteVideoTrack>>
§audio_tracks: HashMap<Sid, Arc<RemoteAudioTrack>>
Trait Implementations§
source§impl Clone for RemoteParticipant
impl Clone for RemoteParticipant
source§fn clone(&self) -> RemoteParticipant
fn clone(&self) -> RemoteParticipant
Returns a copy 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 moreAuto Trait Implementations§
impl !RefUnwindSafe for RemoteParticipant
impl Send for RemoteParticipant
impl Sync for RemoteParticipant
impl Unpin for RemoteParticipant
impl !UnwindSafe for RemoteParticipant
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