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