pub struct IABChannelSubDescriptor {
pub bed_meta_id: Option<u32>,
pub channel_id: Option<u32>,
}Expand description
Presence-only stub for ST 2067-201:2026 Annex E IABChannelSubDescriptor.
The 2026 spec defines the full item set in Table E.1
(IABBedMetaID, IABChannelID, IABAudioDescription,
IABAudioDescriptionText); imferno’s CPL parser only needs to count
occurrences to fire the IabChannelSubDescriptorRecommended warning,
so the inner shape is intentionally permissive — any nested content
deserialises into the catch-all map without affecting presence.
Fields§
§bed_meta_id: Option<u32>Annex E §E.2 — IAB Bed MetaID of the associated BedDefinition.
channel_id: Option<u32>Annex E §E.2 — Channel ID within the bed.
Trait Implementations§
Source§impl Clone for IABChannelSubDescriptor
impl Clone for IABChannelSubDescriptor
Source§fn clone(&self) -> IABChannelSubDescriptor
fn clone(&self) -> IABChannelSubDescriptor
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 moreSource§impl Debug for IABChannelSubDescriptor
impl Debug for IABChannelSubDescriptor
Source§impl Default for IABChannelSubDescriptor
impl Default for IABChannelSubDescriptor
Source§fn default() -> IABChannelSubDescriptor
fn default() -> IABChannelSubDescriptor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IABChannelSubDescriptor
impl<'de> Deserialize<'de> for IABChannelSubDescriptor
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for IABChannelSubDescriptor
impl PartialEq for IABChannelSubDescriptor
Source§fn eq(&self, other: &IABChannelSubDescriptor) -> bool
fn eq(&self, other: &IABChannelSubDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IABChannelSubDescriptor
impl Serialize for IABChannelSubDescriptor
impl StructuralPartialEq for IABChannelSubDescriptor
Auto Trait Implementations§
impl Freeze for IABChannelSubDescriptor
impl RefUnwindSafe for IABChannelSubDescriptor
impl Send for IABChannelSubDescriptor
impl Sync for IABChannelSubDescriptor
impl Unpin for IABChannelSubDescriptor
impl UnsafeUnpin for IABChannelSubDescriptor
impl UnwindSafe for IABChannelSubDescriptor
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