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