#[repr(C)]pub struct SwapchainPresentFenceInfoKHR {
pub s_type: StructureType,
pub p_next: *const c_void,
pub swapchain_count: u32,
pub p_fences: *const Fence,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_SWAPCHAIN_PRESENT_FENCE_INFO_KHR.
p_next: *const c_voidOptional, may be null.
swapchain_count: u32Length of p_fences.
p_fences: *const FenceOptional, may be null.
Implementations§
Source§impl SwapchainPresentFenceInfoKHR
impl SwapchainPresentFenceInfoKHR
Sourcepub fn builder<'a>() -> SwapchainPresentFenceInfoKHRBuilder<'a>
pub fn builder<'a>() -> SwapchainPresentFenceInfoKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for SwapchainPresentFenceInfoKHR
impl Clone for SwapchainPresentFenceInfoKHR
Source§fn clone(&self) -> SwapchainPresentFenceInfoKHR
fn clone(&self) -> SwapchainPresentFenceInfoKHR
Returns a duplicate 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 SwapchainPresentFenceInfoKHR
impl Debug for SwapchainPresentFenceInfoKHR
impl Copy for SwapchainPresentFenceInfoKHR
impl ExtendsPresentInfoKHR for SwapchainPresentFenceInfoKHR
Auto Trait Implementations§
impl Freeze for SwapchainPresentFenceInfoKHR
impl RefUnwindSafe for SwapchainPresentFenceInfoKHR
impl !Send for SwapchainPresentFenceInfoKHR
impl !Sync for SwapchainPresentFenceInfoKHR
impl Unpin for SwapchainPresentFenceInfoKHR
impl UnsafeUnpin for SwapchainPresentFenceInfoKHR
impl UnwindSafe for SwapchainPresentFenceInfoKHR
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