#[repr(C)]pub struct DeviceGroupPresentInfoKHR {
pub s_type: StructureType,
pub p_next: *const c_void,
pub swapchain_count: u32,
pub p_device_masks: *const u32,
pub mode: DeviceGroupPresentModeFlagBitsKHR,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_INFO_KHR.
p_next: *const c_voidOptional, may be null.
swapchain_count: u32Length of p_device_masks.
p_device_masks: *const u32§mode: DeviceGroupPresentModeFlagBitsKHRImplementations§
Source§impl DeviceGroupPresentInfoKHR
impl DeviceGroupPresentInfoKHR
Sourcepub fn builder<'a>() -> DeviceGroupPresentInfoKHRBuilder<'a>
pub fn builder<'a>() -> DeviceGroupPresentInfoKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DeviceGroupPresentInfoKHR
impl Clone for DeviceGroupPresentInfoKHR
Source§fn clone(&self) -> DeviceGroupPresentInfoKHR
fn clone(&self) -> DeviceGroupPresentInfoKHR
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 DeviceGroupPresentInfoKHR
impl Debug for DeviceGroupPresentInfoKHR
Source§impl Default for DeviceGroupPresentInfoKHR
impl Default for DeviceGroupPresentInfoKHR
Source§fn default() -> DeviceGroupPresentInfoKHR
fn default() -> DeviceGroupPresentInfoKHR
Returns the “default value” for a type. Read more
impl Copy for DeviceGroupPresentInfoKHR
impl ExtendsPresentInfoKHR for DeviceGroupPresentInfoKHR
Auto Trait Implementations§
impl Freeze for DeviceGroupPresentInfoKHR
impl RefUnwindSafe for DeviceGroupPresentInfoKHR
impl !Send for DeviceGroupPresentInfoKHR
impl !Sync for DeviceGroupPresentInfoKHR
impl Unpin for DeviceGroupPresentInfoKHR
impl UnsafeUnpin for DeviceGroupPresentInfoKHR
impl UnwindSafe for DeviceGroupPresentInfoKHR
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