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