Struct vulkanalia::vk::SwapchainCreateInfoKHRBuilder[][src]

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

A builder for a SwapchainCreateInfoKHR.

Implementations

impl<'b> SwapchainCreateInfoKHRBuilder<'b>[src]

pub fn push_next<T>(self, next: &'b mut impl Cast<Target = T>) -> Self where
    T: ExtendsSwapchainCreateInfoKHR
[src]

pub fn flags(self, flags: SwapchainCreateFlagsKHR) -> Self[src]

pub fn surface(self, surface: SurfaceKHR) -> Self[src]

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

pub fn image_format(self, image_format: Format) -> Self[src]

pub fn image_color_space(self, image_color_space: ColorSpaceKHR) -> Self[src]

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

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

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

pub fn image_sharing_mode(self, image_sharing_mode: SharingMode) -> Self[src]

pub fn queue_family_indices(self, queue_family_indices: &'b [u32]) -> Self[src]

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

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

pub fn present_mode(self, present_mode: PresentModeKHR) -> Self[src]

pub fn clipped(self, clipped: bool) -> Self[src]

pub fn old_swapchain(self, old_swapchain: SwapchainKHR) -> Self[src]

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

Trait Implementations

impl<'b> Cast for SwapchainCreateInfoKHRBuilder<'b>[src]

type Target = SwapchainCreateInfoKHR

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

impl<'b> Clone for SwapchainCreateInfoKHRBuilder<'b>[src]

impl<'b> Copy for SwapchainCreateInfoKHRBuilder<'b>[src]

impl<'b> Debug for SwapchainCreateInfoKHRBuilder<'b>[src]

impl<'b> Default for SwapchainCreateInfoKHRBuilder<'b>[src]

impl<'b> Deref for SwapchainCreateInfoKHRBuilder<'b>[src]

type Target = SwapchainCreateInfoKHR

The resulting type after dereferencing.

impl<'b> DerefMut for SwapchainCreateInfoKHRBuilder<'b>[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.