pub struct RungPackets {
pub rung_index: usize,
pub width: u32,
pub height: u32,
pub label: String,
pub packets: Vec<EncodedPacket>,
}Expand description
One rung’s full ordered AV1 packet stream, stitched from chunks encoded across GPUs. The caller muxes these into a single MP4 (+ audio).
Fields§
§rung_index: usize§width: u32§height: u32§label: String§packets: Vec<EncodedPacket>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RungPackets
impl RefUnwindSafe for RungPackets
impl Send for RungPackets
impl Sync for RungPackets
impl Unpin for RungPackets
impl UnsafeUnpin for RungPackets
impl UnwindSafe for RungPackets
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