Enum hls_m3u8::tags::MediaSegmentTag[][src]

pub enum MediaSegmentTag {
    ExtInf(ExtInf),
    ExtXByteRange(ExtXByteRange),
    ExtXDateRange(ExtXDateRange),
    ExtXDiscontinuity(ExtXDiscontinuity),
    ExtXKey(ExtXKey),
    ExtXMap(ExtXMap),
    ExtXProgramDateTime(ExtXProgramDateTime),
}

Variants

Trait Implementations

impl Debug for MediaSegmentTag
[src]

Formats the value using the given formatter. Read more

impl Clone for MediaSegmentTag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MediaSegmentTag
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for MediaSegmentTag
[src]

impl From<ExtInf> for MediaSegmentTag
[src]

Performs the conversion.

impl From<ExtXByteRange> for MediaSegmentTag
[src]

Performs the conversion.

impl From<ExtXDateRange> for MediaSegmentTag
[src]

Performs the conversion.

impl From<ExtXDiscontinuity> for MediaSegmentTag
[src]

Performs the conversion.

impl From<ExtXKey> for MediaSegmentTag
[src]

Performs the conversion.

impl From<ExtXMap> for MediaSegmentTag
[src]

Performs the conversion.

impl From<ExtXProgramDateTime> for MediaSegmentTag
[src]

Performs the conversion.

Auto Trait Implementations