[][src]Enum scte35_reader::SpliceDescriptor

pub enum SpliceDescriptor {
    AvailDescriptor {
        provider_avail_id: u32,
    },
    DTMFDescriptor {
        preroll: u8,
        dtmf_chars: Vec<u8>,
    },
    SegmentationDescriptor {
        segmentation_event_id: u32,
        descriptor_detail: SegmentationDescriptor,
    },
    TimeDescriptor {
        tai_seconds: u64,
        tai_nanoseconds: u32,
        utc_offset: u16,
    },
    Reserved {
        tag: u8,
        identifier: [u8; 4],
        private_bytes: Vec<u8>,
    },
}

Variants

AvailDescriptor

Fields of AvailDescriptor

provider_avail_id: u32
DTMFDescriptor

Fields of DTMFDescriptor

preroll: u8dtmf_chars: Vec<u8>
SegmentationDescriptor

Fields of SegmentationDescriptor

segmentation_event_id: u32descriptor_detail: SegmentationDescriptor
TimeDescriptor

Fields of TimeDescriptor

tai_seconds: u64tai_nanoseconds: u32utc_offset: u16
Reserved

Fields of Reserved

tag: u8identifier: [u8; 4]private_bytes: Vec<u8>

Trait Implementations

impl Debug for SpliceDescriptor[src]

impl Serialize for SpliceDescriptor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.