[][src]Struct vulkanalia::vk::DisplayPropertiesKHR

#[repr(C)]pub struct DisplayPropertiesKHR {
    pub display: DisplayKHR,
    pub display_name: *const i8,
    pub physical_dimensions: Extent2D,
    pub physical_resolution: Extent2D,
    pub supported_transforms: SurfaceTransformFlagsKHR,
    pub plane_reorder_possible: u32,
    pub persistent_content: u32,
}

Fields

display: DisplayKHRdisplay_name: *const i8physical_dimensions: Extent2Dphysical_resolution: Extent2Dsupported_transforms: SurfaceTransformFlagsKHRplane_reorder_possible: u32persistent_content: u32

Trait Implementations

impl Cast for DisplayPropertiesKHR[src]

type Target = DisplayPropertiesKHR

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

impl Clone for DisplayPropertiesKHR[src]

impl Copy for DisplayPropertiesKHR[src]

impl Debug for DisplayPropertiesKHR[src]

impl Default for DisplayPropertiesKHR[src]

impl Eq for DisplayPropertiesKHR[src]

impl<'b> HasBuilder<'b> for DisplayPropertiesKHR[src]

type Builder = DisplayPropertiesKHRBuilder<'b>

The associated builder for this type.

impl Hash for DisplayPropertiesKHR[src]

impl PartialEq<DisplayPropertiesKHR> for DisplayPropertiesKHR[src]

impl StructuralEq for DisplayPropertiesKHR[src]

impl StructuralPartialEq for DisplayPropertiesKHR[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.