Struct vulkanalia::vk::SurfaceCapabilities2EXTBuilder[][src]

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

A builder for a SurfaceCapabilities2EXT.

Implementations

impl SurfaceCapabilities2EXTBuilder[src]

pub fn min_image_count(self, min_image_count: u32) -> Self[src]

pub fn max_image_count(self, max_image_count: u32) -> Self[src]

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

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

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

pub fn max_image_array_layers(self, max_image_array_layers: u32) -> Self[src]

pub fn supported_transforms(
    self,
    supported_transforms: SurfaceTransformFlagsKHR
) -> Self
[src]

pub fn current_transform(
    self,
    current_transform: SurfaceTransformFlagsKHR
) -> Self
[src]

pub fn supported_composite_alpha(
    self,
    supported_composite_alpha: CompositeAlphaFlagsKHR
) -> Self
[src]

pub fn supported_usage_flags(
    self,
    supported_usage_flags: ImageUsageFlags
) -> Self
[src]

pub fn supported_surface_counters(
    self,
    supported_surface_counters: SurfaceCounterFlagsEXT
) -> Self
[src]

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

Trait Implementations

impl Cast for SurfaceCapabilities2EXTBuilder[src]

type Target = SurfaceCapabilities2EXT

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

impl Clone for SurfaceCapabilities2EXTBuilder[src]

impl Copy for SurfaceCapabilities2EXTBuilder[src]

impl Debug for SurfaceCapabilities2EXTBuilder[src]

impl Default for SurfaceCapabilities2EXTBuilder[src]

impl Deref for SurfaceCapabilities2EXTBuilder[src]

type Target = SurfaceCapabilities2EXT

The resulting type after dereferencing.

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