[][src]Struct hls_m3u8::tags::ExtXSessionData

pub struct ExtXSessionData { /* fields omitted */ }

Methods

impl ExtXSessionData[src]

pub fn new(data_id: QuotedString, data: SessionData) -> Self[src]

Makes a new ExtXSessionData tag.

pub fn with_language(
    data_id: QuotedString,
    data: SessionData,
    language: QuotedString
) -> Self
[src]

Makes a new ExtXSessionData with the given language.

pub fn data_id(&self) -> &QuotedString[src]

Returns the identifier of the data.

pub fn data(&self) -> &SessionData[src]

Returns the session data.

pub fn language(&self) -> Option<&QuotedString>[src]

Returns the language of the data.

pub fn requires_version(&self) -> ProtocolVersion[src]

Returns the protocol compatibility version that this tag requires.

Trait Implementations

impl Clone for ExtXSessionData[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl From<ExtXSessionData> for MasterPlaylistTag[src]

impl PartialEq<ExtXSessionData> for ExtXSessionData[src]

impl Eq for ExtXSessionData[src]

impl Display for ExtXSessionData[src]

impl Debug for ExtXSessionData[src]

impl Hash for ExtXSessionData[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

impl FromStr for ExtXSessionData[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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