#[repr(C)]pub struct PresentInfoKHR {
pub sType: StructureType,
pub pNext: *const c_void,
pub waitSemaphoreCount: u32,
pub pWaitSemaphores: *const Semaphore,
pub swapchainCount: u32,
pub pSwapchains: *const SwapchainKHR,
pub pImageIndices: *const u32,
pub pResults: *mut Result,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§waitSemaphoreCount: u32
§pWaitSemaphores: *const Semaphore
§swapchainCount: u32
§pSwapchains: *const SwapchainKHR
§pImageIndices: *const u32
§pResults: *mut Result
Auto Trait Implementations§
impl Freeze for PresentInfoKHR
impl RefUnwindSafe for PresentInfoKHR
impl !Send for PresentInfoKHR
impl !Sync for PresentInfoKHR
impl Unpin for PresentInfoKHR
impl UnwindSafe for PresentInfoKHR
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