pub enum OutputEvent {
SfuUpdateSubscription(SfuUpdateSubscription),
TrackPublished(TrackPublished),
TrackUnpublished(TrackUnpublished),
}Expand description
An event produced by Manager requiring external action.
Variants§
SfuUpdateSubscription(SfuUpdateSubscription)
TrackPublished(TrackPublished)
TrackUnpublished(TrackUnpublished)
Trait Implementations§
Source§impl Debug for OutputEvent
impl Debug for OutputEvent
Source§impl From<SfuUpdateSubscription> for OutputEvent
Convert into SfuUpdateSubscription variant.
impl From<SfuUpdateSubscription> for OutputEvent
Convert into SfuUpdateSubscription variant.
Source§fn from(v: SfuUpdateSubscription) -> Self
fn from(v: SfuUpdateSubscription) -> Self
Converts to this type from the input type.
Source§impl From<TrackPublished> for OutputEvent
Convert into TrackPublished variant.
impl From<TrackPublished> for OutputEvent
Convert into TrackPublished variant.
Source§fn from(v: TrackPublished) -> Self
fn from(v: TrackPublished) -> Self
Converts to this type from the input type.
Source§impl From<TrackUnpublished> for OutputEvent
Convert into TrackUnpublished variant.
impl From<TrackUnpublished> for OutputEvent
Convert into TrackUnpublished variant.
Source§fn from(v: TrackUnpublished) -> Self
fn from(v: TrackUnpublished) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OutputEvent
impl RefUnwindSafe for OutputEvent
impl Send for OutputEvent
impl Sync for OutputEvent
impl Unpin for OutputEvent
impl UnsafeUnpin for OutputEvent
impl UnwindSafe for OutputEvent
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