Enum hls_m3u8::tags::MediaPlaylistTag[][src]

pub enum MediaPlaylistTag {
    ExtXTargetDuration(ExtXTargetDuration),
    ExtXMediaSequence(ExtXMediaSequence),
    ExtXDiscontinuitySequence(ExtXDiscontinuitySequence),
    ExtXEndList(ExtXEndList),
    ExtXPlaylistType(ExtXPlaylistType),
    ExtXIFramesOnly(ExtXIFramesOnly),
    ExtXIndependentSegments(ExtXIndependentSegments),
    ExtXStart(ExtXStart),
}

Variants

Trait Implementations

impl Debug for MediaPlaylistTag
[src]

Formats the value using the given formatter. Read more

impl Clone for MediaPlaylistTag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MediaPlaylistTag
[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 MediaPlaylistTag
[src]

impl From<ExtXTargetDuration> for MediaPlaylistTag
[src]

Performs the conversion.

impl From<ExtXMediaSequence> for MediaPlaylistTag
[src]

Performs the conversion.

impl From<ExtXDiscontinuitySequence> for MediaPlaylistTag
[src]

Performs the conversion.

impl From<ExtXEndList> for MediaPlaylistTag
[src]

Performs the conversion.

impl From<ExtXPlaylistType> for MediaPlaylistTag
[src]

Performs the conversion.

impl From<ExtXIFramesOnly> for MediaPlaylistTag
[src]

Performs the conversion.

impl From<ExtXIndependentSegments> for MediaPlaylistTag
[src]

Performs the conversion.

impl From<ExtXStart> for MediaPlaylistTag
[src]

Performs the conversion.

Auto Trait Implementations