pub struct UntPlatform<'a> {
pub compatibility_descriptor: CompatibilityDescriptor<'a>,
pub target_operational_pairs: Vec<(DescriptorLoop<'a>, DescriptorLoop<'a>)>,
}Expand description
A single platform entry in the UNT platform loop (Tables 11/15/17/18, §9.4.2.2–9.4.2.4).
Each entry consists of a compatibilityDescriptor() block (typed as
CompatibilityDescriptor — ISO/IEC 13818-6 groupInfo structure, not a
standard SI descriptor), followed by a platform_loop_length field and
target/operational descriptor-loop pairs.
Fields§
§compatibility_descriptor: CompatibilityDescriptor<'a>compatibilityDescriptor() — TS 102 006 Table 15 / ISO/IEC 13818-6.
target_operational_pairs: Vec<(DescriptorLoop<'a>, DescriptorLoop<'a>)>N pairs of (target_descriptor_loop, operational_descriptor_loop) per TS 102 006 Table 11.
Trait Implementations§
Source§impl<'a> Clone for UntPlatform<'a>
impl<'a> Clone for UntPlatform<'a>
Source§fn clone(&self) -> UntPlatform<'a>
fn clone(&self) -> UntPlatform<'a>
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<'a> Debug for UntPlatform<'a>
impl<'a> Debug for UntPlatform<'a>
impl<'a> Eq for UntPlatform<'a>
Source§impl<'a> PartialEq for UntPlatform<'a>
impl<'a> PartialEq for UntPlatform<'a>
Source§fn eq(&self, other: &UntPlatform<'a>) -> bool
fn eq(&self, other: &UntPlatform<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for UntPlatform<'a>
impl<'a> Serialize for UntPlatform<'a>
impl<'a> StructuralPartialEq for UntPlatform<'a>
Auto Trait Implementations§
impl<'a> Freeze for UntPlatform<'a>
impl<'a> RefUnwindSafe for UntPlatform<'a>
impl<'a> Send for UntPlatform<'a>
impl<'a> Sync for UntPlatform<'a>
impl<'a> Unpin for UntPlatform<'a>
impl<'a> UnsafeUnpin for UntPlatform<'a>
impl<'a> UnwindSafe for UntPlatform<'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