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