[][src]Struct ash::vk::PresentInfoKHR

#[repr(C)]
pub struct PresentInfoKHR {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub wait_semaphore_count: u32,
    pub p_wait_semaphores: *const Semaphore,
    pub swapchain_count: u32,
    pub p_swapchains: *const SwapchainKHR,
    pub p_image_indices: *const u32,
    pub p_results: *mut Result,
}

https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/VkPresentInfoKHR.html

Fields

s_type: StructureTypep_next: *const c_voidwait_semaphore_count: u32p_wait_semaphores: *const Semaphoreswapchain_count: u32p_swapchains: *const SwapchainKHRp_image_indices: *const u32p_results: *mut Result

Methods

impl PresentInfoKHR[src]

pub fn builder<'a>() -> PresentInfoKHRBuilder<'a>[src]

Trait Implementations

impl Copy for PresentInfoKHR[src]

impl Default for PresentInfoKHR[src]

impl Clone for PresentInfoKHR[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PresentInfoKHR[src]

Auto Trait Implementations

impl Unpin for PresentInfoKHR

impl !Sync for PresentInfoKHR

impl !Send for PresentInfoKHR

impl UnwindSafe for PresentInfoKHR

impl RefUnwindSafe for PresentInfoKHR

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]