#[non_exhaustive]pub enum RangeType {
ProductionDisparityHint,
MultiRegionSei,
Reserved(u8),
}Expand description
Range type — ETSI EN 300 468 §6.4.16.1 Table 161
(docs/en_300_468.md, Table 161 — Range type coding).
8-bit field. Selects the interpretation of the range_selector bytes.
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.
ProductionDisparityHint
0x00 — production disparity hint (production_disparity_hint_info()).
MultiRegionSei
0x01 — multi-region disparity Supplemental Enhancement Information (SEI) present.
Reserved(u8)
0x02–0xFF — reserved for future use.
Implementations§
Trait Implementations§
impl Copy for RangeType
impl Eq for RangeType
impl StructuralPartialEq for RangeType
Auto Trait Implementations§
impl Freeze for RangeType
impl RefUnwindSafe for RangeType
impl Send for RangeType
impl Sync for RangeType
impl Unpin for RangeType
impl UnsafeUnpin for RangeType
impl UnwindSafe for RangeType
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