#[repr(C)]pub struct PhysicalDeviceGroupProperties {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub physical_device_count: u32,
pub physical_devices: [PhysicalDevice; 32],
pub subset_allocation: u32,
}Expand description
VkPhysicalDeviceGroupProperties
Provided by VK_BASE_VERSION_1_1.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES.
p_next: *mut c_voidOptional, may be null.
physical_device_count: u32§physical_devices: [PhysicalDevice; 32]§subset_allocation: u32Implementations§
Source§impl PhysicalDeviceGroupProperties
impl PhysicalDeviceGroupProperties
Sourcepub fn builder<'a>() -> PhysicalDeviceGroupPropertiesBuilder<'a>
pub fn builder<'a>() -> PhysicalDeviceGroupPropertiesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDeviceGroupProperties
impl Clone for PhysicalDeviceGroupProperties
Source§fn clone(&self) -> PhysicalDeviceGroupProperties
fn clone(&self) -> PhysicalDeviceGroupProperties
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 Default for PhysicalDeviceGroupProperties
impl Default for PhysicalDeviceGroupProperties
Source§fn default() -> PhysicalDeviceGroupProperties
fn default() -> PhysicalDeviceGroupProperties
Returns the “default value” for a type. Read more
impl Copy for PhysicalDeviceGroupProperties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceGroupProperties
impl RefUnwindSafe for PhysicalDeviceGroupProperties
impl !Send for PhysicalDeviceGroupProperties
impl !Sync for PhysicalDeviceGroupProperties
impl Unpin for PhysicalDeviceGroupProperties
impl UnsafeUnpin for PhysicalDeviceGroupProperties
impl UnwindSafe for PhysicalDeviceGroupProperties
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