Enum mpeg2ts_reader::demultiplex::ProgramDescriptor[][src]

pub enum ProgramDescriptor {
    Network {
        pid: u16,
    },
    Program {
        program_number: u16,
        pid: u16,
    },
}

Variants

Fields of Network

Fields of Program

Methods

impl ProgramDescriptor
[src]

panics if fewer than 4 bytes are provided

Trait Implementations

impl Clone for ProgramDescriptor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProgramDescriptor
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations