[][src]Struct ash::vk::SwapchainCreateInfoKHRBuilder

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

Implementations

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

pub fn flags(
    self,
    flags: SwapchainCreateFlagsKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]

pub fn surface(self, surface: SurfaceKHR) -> SwapchainCreateInfoKHRBuilder<'a>[src]

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

pub fn image_format(
    self,
    image_format: Format
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]

pub fn image_color_space(
    self,
    image_color_space: ColorSpaceKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]

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

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

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

pub fn image_sharing_mode(
    self,
    image_sharing_mode: SharingMode
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]

pub fn queue_family_indices(
    self,
    queue_family_indices: &'a [u32]
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]

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

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

pub fn present_mode(
    self,
    present_mode: PresentModeKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]

pub fn clipped(self, clipped: bool) -> SwapchainCreateInfoKHRBuilder<'a>[src]

pub fn old_swapchain(
    self,
    old_swapchain: SwapchainKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]

pub fn push_next<T: ExtendsSwapchainCreateInfoKHR>(
    self,
    next: &'a mut T
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]

Prepends the given extension struct between the root and the first pointer. This method only exists on structs that can be passed to a function directly. Only valid extension structs can be pushed into the chain. If the chain looks like A -> B -> C, and you call builder.push_next(&mut D), then the chain will look like A -> D -> B -> C.

pub fn build(self) -> SwapchainCreateInfoKHR[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 = SwapchainCreateInfoKHR>

Trait Implementations

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

type Target = SwapchainCreateInfoKHR

The resulting type after dereferencing.

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