[][src]Struct ash::vk::SurfaceCapabilitiesKHRBuilder

#[repr(transparent)]
pub struct SurfaceCapabilitiesKHRBuilder<'a> { /* fields omitted */ }

Methods

impl<'a> SurfaceCapabilitiesKHRBuilder<'a>[src]

pub fn min_image_count(
    self,
    min_image_count: u32
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn max_image_count(
    self,
    max_image_count: u32
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn current_extent(
    self,
    current_extent: Extent2D
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn min_image_extent(
    self,
    min_image_extent: Extent2D
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn max_image_extent(
    self,
    max_image_extent: Extent2D
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn max_image_array_layers(
    self,
    max_image_array_layers: u32
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn supported_transforms(
    self,
    supported_transforms: SurfaceTransformFlagsKHR
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn current_transform(
    self,
    current_transform: SurfaceTransformFlagsKHR
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn supported_composite_alpha(
    self,
    supported_composite_alpha: CompositeAlphaFlagsKHR
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

pub fn supported_usage_flags(
    self,
    supported_usage_flags: ImageUsageFlags
) -> SurfaceCapabilitiesKHRBuilder<'a>
[src]

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

Calling build will discard all the lifetime information. Only call this if necessary! Builders implement Deref targeting their corresponding Vulkan struct, so references to builders can be passed directly to Vulkan functions.

Methods from Deref<Target = SurfaceCapabilitiesKHR>

Trait Implementations

impl<'a> Deref for SurfaceCapabilitiesKHRBuilder<'a>[src]

type Target = SurfaceCapabilitiesKHR

The resulting type after dereferencing.

impl<'a> DerefMut for SurfaceCapabilitiesKHRBuilder<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for SurfaceCapabilitiesKHRBuilder<'a>

impl<'a> Sync for SurfaceCapabilitiesKHRBuilder<'a>

impl<'a> Send for SurfaceCapabilitiesKHRBuilder<'a>

impl<'a> UnwindSafe for SurfaceCapabilitiesKHRBuilder<'a>

impl<'a> RefUnwindSafe for SurfaceCapabilitiesKHRBuilder<'a>

Blanket Implementations

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

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

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.

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

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

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