#[non_exhaustive]pub enum DecoderConfig<'a> {
None,
InDescriptor(DecoderConfigInDescriptor<'a>),
SameService,
DsmccCarousel(DecoderConfigDsmcc<'a>),
OtherService(DecoderConfigOtherService),
ReservedData(ReservedData<'a>),
Private,
}Expand description
All decoder-config variants, selected by decoder_config_flags.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
No decoder config needed (0b000).
InDescriptor(DecoderConfigInDescriptor<'a>)
Carried in this descriptor (0b001).
SameService
Carried in same metadata service (0b010, no data).
DsmccCarousel(DecoderConfigDsmcc<'a>)
Carried in DSM-CC carousel (0b011).
OtherService(DecoderConfigOtherService)
Carried in another metadata service (0b100).
ReservedData(ReservedData<'a>)
Reserved data (0b101|0b110).
Private
Privately defined (0b111, no data).
Trait Implementations§
Source§impl<'a> Clone for DecoderConfig<'a>
impl<'a> Clone for DecoderConfig<'a>
Source§fn clone(&self) -> DecoderConfig<'a>
fn clone(&self) -> DecoderConfig<'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 DecoderConfig<'a>
impl<'a> Debug for DecoderConfig<'a>
impl<'a> Eq for DecoderConfig<'a>
Source§impl<'a> PartialEq for DecoderConfig<'a>
impl<'a> PartialEq for DecoderConfig<'a>
Source§fn eq(&self, other: &DecoderConfig<'a>) -> bool
fn eq(&self, other: &DecoderConfig<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for DecoderConfig<'a>
impl<'a> Serialize for DecoderConfig<'a>
impl<'a> StructuralPartialEq for DecoderConfig<'a>
Auto Trait Implementations§
impl<'a> Freeze for DecoderConfig<'a>
impl<'a> RefUnwindSafe for DecoderConfig<'a>
impl<'a> Send for DecoderConfig<'a>
impl<'a> Sync for DecoderConfig<'a>
impl<'a> Unpin for DecoderConfig<'a>
impl<'a> UnsafeUnpin for DecoderConfig<'a>
impl<'a> UnwindSafe for DecoderConfig<'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