pub struct J2kPacketizationPacketDescriptor {
pub packet_index: u32,
pub state_index: u32,
pub layer: u8,
pub resolution: u32,
pub component: u8,
pub precinct: u64,
}Expand description
Adapter explicit packet descriptor for backend packetization experimentation.
Fields§
§packet_index: u32Index into the packet contribution array.
state_index: u32Persistent packet-state index for repeated layer/precinct packets.
layer: u8Quality layer for inclusion tag-tree thresholds.
resolution: u32Resolution index in the output progression.
component: u8Component index in the output progression.
precinct: u64Precinct index in the output progression.
Trait Implementations§
Source§impl Clone for J2kPacketizationPacketDescriptor
impl Clone for J2kPacketizationPacketDescriptor
Source§fn clone(&self) -> J2kPacketizationPacketDescriptor
fn clone(&self) -> J2kPacketizationPacketDescriptor
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 moreimpl Copy for J2kPacketizationPacketDescriptor
impl Eq for J2kPacketizationPacketDescriptor
Source§impl PartialEq for J2kPacketizationPacketDescriptor
impl PartialEq for J2kPacketizationPacketDescriptor
Source§fn eq(&self, other: &J2kPacketizationPacketDescriptor) -> bool
fn eq(&self, other: &J2kPacketizationPacketDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for J2kPacketizationPacketDescriptor
Auto Trait Implementations§
impl Freeze for J2kPacketizationPacketDescriptor
impl RefUnwindSafe for J2kPacketizationPacketDescriptor
impl Send for J2kPacketizationPacketDescriptor
impl Sync for J2kPacketizationPacketDescriptor
impl Unpin for J2kPacketizationPacketDescriptor
impl UnsafeUnpin for J2kPacketizationPacketDescriptor
impl UnwindSafe for J2kPacketizationPacketDescriptor
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