Enum scte35_reader::SpliceDescriptor [] [src]

pub enum SpliceDescriptor {
    AvailDescriptor {
        provider_avail_id: u32,
    },
    DTMFDescriptor,
    SegmentationDescriptor,
    TimeDescriptor,
    Reserved {
        tag: u8,
        identifier: [u8; 4],
        private_bytes: Vec<u8>,
    },
}

Variants

Fields of AvailDescriptor

Fields of Reserved

Trait Implementations

impl Debug for SpliceDescriptor
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations