Struct hls_m3u8::tags::ExtXDateRange[][src]

pub struct ExtXDateRange {
    pub id: QuotedString,
    pub class: Option<QuotedString>,
    pub start_date: QuotedString,
    pub end_date: Option<QuotedString>,
    pub duration: Option<Duration>,
    pub planned_duration: Option<Duration>,
    pub scte35_cmd: Option<QuotedString>,
    pub scte35_out: Option<QuotedString>,
    pub scte35_in: Option<QuotedString>,
    pub end_on_next: bool,
    pub client_attributes: BTreeMap<String, String>,
}

4.3.2.7. EXT-X-DATERANGE

TODO: Implement properly

Fields

Methods

impl ExtXDateRange
[src]

Returns the protocol compatibility version that this tag requires.

Trait Implementations

impl Debug for ExtXDateRange
[src]

Formats the value using the given formatter. Read more

impl Clone for ExtXDateRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Hash for ExtXDateRange
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for ExtXDateRange
[src]

Formats the value using the given formatter. Read more

impl FromStr for ExtXDateRange
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl From<ExtXDateRange> for MediaSegmentTag
[src]

Performs the conversion.

Auto Trait Implementations