Struct hls_m3u8::types::DecimalResolution[][src]

pub struct DecimalResolution {
    pub width: usize,
    pub height: usize,
}

Decimal resolution.

See: 4.2. Attribute Lists

Fields

Horizontal pixel dimension.

Vertical pixel dimension.

Trait Implementations

impl Debug for DecimalResolution
[src]

Formats the value using the given formatter. Read more

impl Clone for DecimalResolution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for DecimalResolution
[src]

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

impl Hash for DecimalResolution
[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 DecimalResolution
[src]

Formats the value using the given formatter. Read more

impl FromStr for DecimalResolution
[src]

The associated error which can be returned from parsing.

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

Auto Trait Implementations