pub(super) struct PlannedReceiverRoute<'a> {
pub(super) input: &'a ReceiverVideoRouteInput<'a>,
pub(super) selected_bitrate: Bitrate,
pub(super) selection: ReceiverRouteSelection,
pub(super) outcome: RouteOutcome,
}Expand description
planned receiver route passed to projection after admission and budget pressure
selected_bitrate, selection and outcome must change together through
Self::send or Self::pause
Fields§
§input: &'a ReceiverVideoRouteInput<'a>immutable route facts captured before policy mutation
selected_bitrate: Bitratebitrate counted against receiver budget after this policy step
selection: ReceiverRouteSelectioncandidate selector, pause state and hysteresis state
outcome: RouteOutcomediagnostic outcome attached to projection
Implementations§
Source§impl<'a> PlannedReceiverRoute<'a>
impl<'a> PlannedReceiverRoute<'a>
fn new( input: &'a ReceiverVideoRouteInput<'a>, selection: ReceiverRouteSelection, ) -> Self
fn send( &mut self, selector: SourceSelector, selected_bitrate: Bitrate, outcome: RouteOutcome, )
fn pause(&mut self, reason: PolicyPauseReason, outcome: RouteOutcome)
Trait Implementations§
Source§impl<'a> Clone for PlannedReceiverRoute<'a>
impl<'a> Clone for PlannedReceiverRoute<'a>
Source§fn clone(&self) -> PlannedReceiverRoute<'a>
fn clone(&self) -> PlannedReceiverRoute<'a>
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<'a> Debug for PlannedReceiverRoute<'a>
impl<'a> Debug for PlannedReceiverRoute<'a>
impl<'a> Copy for PlannedReceiverRoute<'a>
Auto Trait Implementations§
impl<'a> Freeze for PlannedReceiverRoute<'a>
impl<'a> RefUnwindSafe for PlannedReceiverRoute<'a>
impl<'a> Send for PlannedReceiverRoute<'a>
impl<'a> Sync for PlannedReceiverRoute<'a>
impl<'a> Unpin for PlannedReceiverRoute<'a>
impl<'a> UnsafeUnpin for PlannedReceiverRoute<'a>
impl<'a> UnwindSafe for PlannedReceiverRoute<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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