pub struct MediaTrackStoppedPayload {
pub track_id: u64,
pub kind: String,
pub session_id: u64,
}Expand description
Fired when a track is stopped, either programmatically or by the user dismissing a screen share via the browser’s native share picker.
session_id is 0 for tracks not associated with an active session.
Fields§
§track_id: u64§kind: String§session_id: u64Trait Implementations§
Source§impl Debug for MediaTrackStoppedPayload
impl Debug for MediaTrackStoppedPayload
Auto Trait Implementations§
impl Freeze for MediaTrackStoppedPayload
impl RefUnwindSafe for MediaTrackStoppedPayload
impl Send for MediaTrackStoppedPayload
impl Sync for MediaTrackStoppedPayload
impl Unpin for MediaTrackStoppedPayload
impl UnsafeUnpin for MediaTrackStoppedPayload
impl UnwindSafe for MediaTrackStoppedPayload
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