Struct libheif_sys::heif_color_profile_nclx[][src]

#[repr(C)]pub struct heif_color_profile_nclx {
    pub version: u8,
    pub color_primaries: heif_color_primaries,
    pub transfer_characteristics: heif_transfer_characteristics,
    pub matrix_coefficients: heif_matrix_coefficients,
    pub full_range_flag: u8,
    pub color_primary_red_x: f32,
    pub color_primary_red_y: f32,
    pub color_primary_green_x: f32,
    pub color_primary_green_y: f32,
    pub color_primary_blue_x: f32,
    pub color_primary_blue_y: f32,
    pub color_primary_white_x: f32,
    pub color_primary_white_y: f32,
}

Fields

version: u8color_primaries: heif_color_primariestransfer_characteristics: heif_transfer_characteristicsmatrix_coefficients: heif_matrix_coefficientsfull_range_flag: u8color_primary_red_x: f32color_primary_red_y: f32color_primary_green_x: f32color_primary_green_y: f32color_primary_blue_x: f32color_primary_blue_y: f32color_primary_white_x: f32color_primary_white_y: f32

Trait Implementations

impl Clone for heif_color_profile_nclx[src]

impl Copy for heif_color_profile_nclx[src]

impl Debug for heif_color_profile_nclx[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.