#[repr(C)]pub struct PastPresentationTimingPropertiesEXT {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub timing_properties_counter: u64,
pub time_domains_counter: u64,
pub presentation_timing_count: u32,
pub p_presentation_timings: *mut PastPresentationTimingEXT,
}Expand description
VkPastPresentationTimingPropertiesEXT
Provided by VK_EXT_present_timing.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PAST_PRESENTATION_TIMING_PROPERTIES_EXT.
p_next: *mut c_voidOptional, may be null.
timing_properties_counter: u64§time_domains_counter: u64§presentation_timing_count: u32Length of p_presentation_timings.
p_presentation_timings: *mut PastPresentationTimingEXTImplementations§
Source§impl PastPresentationTimingPropertiesEXT
impl PastPresentationTimingPropertiesEXT
Sourcepub fn builder<'a>() -> PastPresentationTimingPropertiesEXTBuilder<'a>
pub fn builder<'a>() -> PastPresentationTimingPropertiesEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PastPresentationTimingPropertiesEXT
impl Clone for PastPresentationTimingPropertiesEXT
Source§fn clone(&self) -> PastPresentationTimingPropertiesEXT
fn clone(&self) -> PastPresentationTimingPropertiesEXT
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 moreimpl Copy for PastPresentationTimingPropertiesEXT
Auto Trait Implementations§
impl Freeze for PastPresentationTimingPropertiesEXT
impl RefUnwindSafe for PastPresentationTimingPropertiesEXT
impl !Send for PastPresentationTimingPropertiesEXT
impl !Sync for PastPresentationTimingPropertiesEXT
impl Unpin for PastPresentationTimingPropertiesEXT
impl UnsafeUnpin for PastPresentationTimingPropertiesEXT
impl UnwindSafe for PastPresentationTimingPropertiesEXT
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