pub enum RemoteAudioTrackUpdate {
ActiveSpeakersChanged {
speakers: Vec<Sid>,
},
MuteChanged {
track_id: Sid,
muted: bool,
},
Subscribed(Arc<RemoteAudioTrack>, Arc<RemoteTrackPublication>),
Unsubscribed {
publisher_id: Sid,
track_id: Sid,
},
}
Variants§
ActiveSpeakersChanged
MuteChanged
Subscribed(Arc<RemoteAudioTrack>, Arc<RemoteTrackPublication>)
Unsubscribed
Auto Trait Implementations§
impl !RefUnwindSafe for RemoteAudioTrackUpdate
impl Send for RemoteAudioTrackUpdate
impl Sync for RemoteAudioTrackUpdate
impl Unpin for RemoteAudioTrackUpdate
impl !UnwindSafe for RemoteAudioTrackUpdate
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