#[repr(C)]pub struct SwapchainTimeDomainPropertiesEXT {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub time_domain_count: u32,
pub p_time_domains: *mut TimeDomainKHR,
pub p_time_domain_ids: *mut u64,
}Expand description
VkSwapchainTimeDomainPropertiesEXT
Provided by VK_EXT_present_timing.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_SWAPCHAIN_TIME_DOMAIN_PROPERTIES_EXT.
p_next: *mut c_voidOptional, may be null.
time_domain_count: u32Length of p_time_domain_ids.
p_time_domains: *mut TimeDomainKHROptional, may be null.
p_time_domain_ids: *mut u64Optional, may be null.
Implementations§
Source§impl SwapchainTimeDomainPropertiesEXT
impl SwapchainTimeDomainPropertiesEXT
Sourcepub fn builder<'a>() -> SwapchainTimeDomainPropertiesEXTBuilder<'a>
pub fn builder<'a>() -> SwapchainTimeDomainPropertiesEXTBuilder<'a>
Returns a builder for this struct with sType pre-filled.
Trait Implementations§
Source§impl Clone for SwapchainTimeDomainPropertiesEXT
impl Clone for SwapchainTimeDomainPropertiesEXT
Source§fn clone(&self) -> SwapchainTimeDomainPropertiesEXT
fn clone(&self) -> SwapchainTimeDomainPropertiesEXT
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 SwapchainTimeDomainPropertiesEXT
Auto Trait Implementations§
impl Freeze for SwapchainTimeDomainPropertiesEXT
impl RefUnwindSafe for SwapchainTimeDomainPropertiesEXT
impl !Send for SwapchainTimeDomainPropertiesEXT
impl !Sync for SwapchainTimeDomainPropertiesEXT
impl Unpin for SwapchainTimeDomainPropertiesEXT
impl UnsafeUnpin for SwapchainTimeDomainPropertiesEXT
impl UnwindSafe for SwapchainTimeDomainPropertiesEXT
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