Struct vulkanalia::vk::HdrMetadataEXTBuilder[][src]

#[repr(transparent)]pub struct HdrMetadataEXTBuilder { /* fields omitted */ }

A builder for a HdrMetadataEXT.

Implementations

impl HdrMetadataEXTBuilder[src]

pub fn display_primary_red(
    self,
    display_primary_red: impl Cast<Target = XYColorEXT>
) -> Self
[src]

pub fn display_primary_green(
    self,
    display_primary_green: impl Cast<Target = XYColorEXT>
) -> Self
[src]

pub fn display_primary_blue(
    self,
    display_primary_blue: impl Cast<Target = XYColorEXT>
) -> Self
[src]

pub fn white_point(self, white_point: impl Cast<Target = XYColorEXT>) -> Self[src]

pub fn max_luminance(self, max_luminance: f32) -> Self[src]

pub fn min_luminance(self, min_luminance: f32) -> Self[src]

pub fn max_content_light_level(self, max_content_light_level: f32) -> Self[src]

pub fn max_frame_average_light_level(
    self,
    max_frame_average_light_level: f32
) -> Self
[src]

pub fn build(self) -> HdrMetadataEXT[src]

Trait Implementations

impl Cast for HdrMetadataEXTBuilder[src]

type Target = HdrMetadataEXT

The other type this type type can be used interchangeably with in FFI.

impl Clone for HdrMetadataEXTBuilder[src]

impl Copy for HdrMetadataEXTBuilder[src]

impl Debug for HdrMetadataEXTBuilder[src]

impl Default for HdrMetadataEXTBuilder[src]

impl Deref for HdrMetadataEXTBuilder[src]

type Target = HdrMetadataEXT

The resulting type after dereferencing.

impl DerefMut for HdrMetadataEXTBuilder[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.