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