#[repr(C)]pub struct VkPresentInfoKHR {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub waitSemaphoreCount: u32,
pub pWaitSemaphores: *const VkSemaphore,
pub swapchainCount: u32,
pub pSwapchains: *const VkSwapchainKHR,
pub pImageIndices: *const u32,
pub pResults: *mut VkResult,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§waitSemaphoreCount: u32
§pWaitSemaphores: *const VkSemaphore
§swapchainCount: u32
§pSwapchains: *const VkSwapchainKHR
§pImageIndices: *const u32
§pResults: *mut VkResult
Trait Implementations§
Source§impl Clone for VkPresentInfoKHR
impl Clone for VkPresentInfoKHR
Source§fn clone(&self) -> VkPresentInfoKHR
fn clone(&self) -> VkPresentInfoKHR
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for VkPresentInfoKHR
impl Default for VkPresentInfoKHR
impl Copy for VkPresentInfoKHR
Auto Trait Implementations§
impl Freeze for VkPresentInfoKHR
impl RefUnwindSafe for VkPresentInfoKHR
impl !Send for VkPresentInfoKHR
impl !Sync for VkPresentInfoKHR
impl Unpin for VkPresentInfoKHR
impl UnwindSafe for VkPresentInfoKHR
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more