pub(in engine::room) struct SourcePolicyTransaction {
route_effects: RoomRouteEffects,
state_updates: Vec<ConsumerPacketSelectionUpdate>,
featured_users: Vec<FeaturedUserUpdate>,
}Fields§
§route_effects: RoomRouteEffects§state_updates: Vec<ConsumerPacketSelectionUpdate>§featured_users: Vec<FeaturedUserUpdate>Implementations§
Source§impl SourcePolicyTransaction
impl SourcePolicyTransaction
pub(in engine::room) fn plan( state: &RoomState, active_speakers: &[ActiveSpeakerSource], receiver_bandwidth: &ReceiverBandwidthSnapshot, source_bitrate: &TransportBitrateSnapshot, ) -> Option<Self>
pub(super) fn push_state_update( &mut self, update: ConsumerPacketSelectionUpdate, )
pub(super) fn push_route_update( &mut self, update: ConsumerPacketSelectionUpdate, )
pub(super) fn set_receiver_bwe_targets( &mut self, targets: Vec<ReceiverBweTargetUpdate>, )
async fn commit(self, room: &Room, media_transport: &MediaTransport)
fn is_empty(&self) -> bool
Trait Implementations§
Source§impl Debug for SourcePolicyTransaction
impl Debug for SourcePolicyTransaction
Source§impl Default for SourcePolicyTransaction
impl Default for SourcePolicyTransaction
Source§fn default() -> SourcePolicyTransaction
fn default() -> SourcePolicyTransaction
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SourcePolicyTransaction
impl RefUnwindSafe for SourcePolicyTransaction
impl Send for SourcePolicyTransaction
impl Sync for SourcePolicyTransaction
impl Unpin for SourcePolicyTransaction
impl UnsafeUnpin for SourcePolicyTransaction
impl UnwindSafe for SourcePolicyTransaction
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