Struct ash::vk::PresentInfoKHR
source · #[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,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§wait_semaphore_count: u32
§p_wait_semaphores: *const Semaphore
§swapchain_count: u32
§p_swapchains: *const SwapchainKHR
§p_image_indices: *const u32
§p_results: *mut Result
Implementations§
source§impl PresentInfoKHR
impl PresentInfoKHR
pub fn builder<'a>() -> PresentInfoKHRBuilder<'a>
Trait Implementations§
source§impl Clone for PresentInfoKHR
impl Clone for PresentInfoKHR
source§fn clone(&self) -> PresentInfoKHR
fn clone(&self) -> PresentInfoKHR
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PresentInfoKHR
impl Debug for PresentInfoKHR
source§impl Default for PresentInfoKHR
impl Default for PresentInfoKHR
source§impl TaggedStructure for PresentInfoKHR
impl TaggedStructure for PresentInfoKHR
const STRUCTURE_TYPE: StructureType = StructureType::PRESENT_INFO_KHR
impl Copy for PresentInfoKHR
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