pub struct DeviceGroupDeviceCreateInfoBuilder<'a> { /* private fields */ }Expand description
Builder for DeviceGroupDeviceCreateInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> DeviceGroupDeviceCreateInfoBuilder<'a>
pub fn physical_devices( self, slice: &'a [PhysicalDevice], ) -> DeviceGroupDeviceCreateInfoBuilder<'a>
Sourcepub fn push_next<T>(
self,
next: &'a mut T,
) -> DeviceGroupDeviceCreateInfoBuilder<'a>where
T: ExtendsDeviceGroupDeviceCreateInfo,
pub fn push_next<T>(
self,
next: &'a mut T,
) -> DeviceGroupDeviceCreateInfoBuilder<'a>where
T: ExtendsDeviceGroupDeviceCreateInfo,
Prepend a struct to the pNext chain. See DeviceGroupDeviceCreateInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> Deref for DeviceGroupDeviceCreateInfoBuilder<'a>
Source§type Target = DeviceGroupDeviceCreateInfo
type Target = DeviceGroupDeviceCreateInfo
The resulting type after dereferencing.
Source§impl<'a> DerefMut for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> DerefMut for DeviceGroupDeviceCreateInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> RefUnwindSafe for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> !Send for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> !Sync for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> Unpin for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> UnsafeUnpin for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> UnwindSafe for DeviceGroupDeviceCreateInfoBuilder<'a>
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