pub(in engine::room) struct RoomRouteEffects(MediaControlPlan<ProducerRouteFinish, ConsumerRouteFinish>);Tuple Fields§
§0: MediaControlPlan<ProducerRouteFinish, ConsumerRouteFinish>Implementations§
Source§impl RoomRouteEffects
impl RoomRouteEffects
fn producer_activity( &mut self, source: TransportSourceKey, stream_id: UserStreamId, update: SourceActivityUpdate, )
fn receiver_activity(&mut self, activity: ReceiverRouteActivity)
pub(super) fn setup_activity( &mut self, route: TransportConsumerRoute, kind: MediaKind, active: bool, )
pub(super) fn keyframe(&mut self, target: ConsumerRouteTarget)
pub(in engine::room) fn source_policy_update( &mut self, update: ConsumerPacketSelectionUpdate, )
pub(in engine::room) fn set_receiver_bwe_targets( &mut self, targets: Vec<ReceiverBweTargetUpdate>, )
fn append(&mut self, other: Self)
pub(in engine::room) fn is_empty( &self, ) -> bool
pub(in engine::room) async fn execute( self, room_id: &str, media_transport: &MediaTransport, ) -> Vec<ConsumerPacketSelectionUpdate>
Trait Implementations§
Source§impl Debug for RoomRouteEffects
impl Debug for RoomRouteEffects
Source§impl Default for RoomRouteEffects
impl Default for RoomRouteEffects
Source§fn default() -> RoomRouteEffects
fn default() -> RoomRouteEffects
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RoomRouteEffects
impl RefUnwindSafe for RoomRouteEffects
impl Send for RoomRouteEffects
impl Sync for RoomRouteEffects
impl Unpin for RoomRouteEffects
impl UnsafeUnpin for RoomRouteEffects
impl UnwindSafe for RoomRouteEffects
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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more