pub enum TrackEvent {
MuteUpdateIntention {
id: TrackId,
muted: bool,
},
MediaExchangeIntention {
id: TrackId,
enabled: bool,
},
}Variants§
MuteUpdateIntention
Intention of the MediaTrack to mute/unmute himself.
Fields
MediaExchangeIntention
Intention of the MediaTrack to enabled/disable himself.
Trait Implementations§
Source§impl Clone for TrackEvent
impl Clone for TrackEvent
Source§fn clone(&self) -> TrackEvent
fn clone(&self) -> TrackEvent
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 Debug for TrackEvent
impl Debug for TrackEvent
impl Copy for TrackEvent
Auto Trait Implementations§
impl Freeze for TrackEvent
impl RefUnwindSafe for TrackEvent
impl Send for TrackEvent
impl Sync for TrackEvent
impl Unpin for TrackEvent
impl UnwindSafe for TrackEvent
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