Struct matroska_demuxer::MasteringMetadata[][src]

pub struct MasteringMetadata { /* fields omitted */ }

SMPTE 2086 mastering data.

Implementations

impl MasteringMetadata[src]

pub fn primary_r_chromaticity_x(&self) -> Option<f64>[src]

Red X chromaticity coordinate, as defined by CIE 1931.

pub fn primary_r_chromaticity_y(&self) -> Option<f64>[src]

Red Y chromaticity coordinate, as defined by CIE 1931.

pub fn primary_g_chromaticity_x(&self) -> Option<f64>[src]

Green X chromaticity coordinate, as defined by CIE 1931.

pub fn primary_g_chromaticity_y(&self) -> Option<f64>[src]

Green Y chromaticity coordinate, as defined by CIE 1931

pub fn primary_b_chromaticity_x(&self) -> Option<f64>[src]

Blue X chromaticity coordinate, as defined by CIE 1931.

pub fn primary_b_chromaticity_y(&self) -> Option<f64>[src]

Blue Y chromaticity coordinate, as defined by CIE 1931.

pub fn white_point_chromaticity_x(&self) -> Option<f64>[src]

White X chromaticity coordinate, as defined by CIE 1931.

pub fn white_point_chromaticity_y(&self) -> Option<f64>[src]

White Y chromaticity coordinate, as defined by CIE 1931.

pub fn luminance_max(&self) -> Option<f64>[src]

Maximum luminance. Represented in candelas per square meter (cd/m^2^).

pub fn luminance_min(&self) -> Option<f64>[src]

Minimum luminance. Represented in candelas per square meter (cd/m^2^).

Trait Implementations

impl Clone for MasteringMetadata[src]

impl Debug for MasteringMetadata[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.