pub struct PlannedVideoGroup {
pub gh: usize,
pub gw: usize,
pub timestamp: f32,
}Expand description
Header-only video plan used by the HTTP admission path. It carries exactly the information needed to price/render the pad runs; frame pixels are not materialized until the request has passed budget and concurrency admission.
Fields§
§gh: usize§gw: usize§timestamp: f32Trait Implementations§
Source§impl Clone for PlannedVideoGroup
impl Clone for PlannedVideoGroup
Source§fn clone(&self) -> PlannedVideoGroup
fn clone(&self) -> PlannedVideoGroup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PlannedVideoGroup
impl RefUnwindSafe for PlannedVideoGroup
impl Send for PlannedVideoGroup
impl Sync for PlannedVideoGroup
impl Unpin for PlannedVideoGroup
impl UnsafeUnpin for PlannedVideoGroup
impl UnwindSafe for PlannedVideoGroup
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